<<set $pIndex to 0>>
<<set $wdIndex to 5>>
<<set $day to 1>>
<<set $act to 1>>
<<set $chapter to 1>>
<<set $ver to 0.10>>
<<set $lang to "ru">>
<<set $historyOfChoices to []>>
<<set $scheduleStage = 1>>
<<set $eventDay = 0>>
<<set $eventPassage = "">>
<<set $allowSkip = false>>
<<set $showSandboxIntro = true>>
<<cacheaudio "bgm_ost" "data/audio/ost.mp3">>
<<cacheaudio "bgm_club" "data/audio/club.mp3">>
<<cacheaudio "bgm_juzz" "data/audio/juzz.mp3">>
<<cacheaudio "bgm_chill" "data/audio/chill.mp3">>
<<cacheaudio "bgm_freeroom" "data/audio/freeroom.mp3">>
/* ГГ */
<<set $mcIq to 120>>
<<set $mcWillpower to 100>>
<<set $mcSC to 70>> /* уверенность в себе */
<<set $money to 100000>>
<<set $bank to 5000000>>
<<set $playerBio to {
ru: "Обычный программист, чья жизнь круто изменилась после разработки приложения для фирмы. Сейчас ты чувствуешь себя самозванцем в собственном офисе.",
en: "A common developer whose life changed dramatically after developing an app for a company. Now you feel like an impostor in your own office."
}>>
<<set $isWorkedToday = false>>
/* ЖЕНА */
<<set $wifeLove to 99>>
<<set $wifeSub to 80>> /* Положение (0DOM / 100SUB) */
<<set $wifeSubNPC to 0>> /* Покорность к нпс */
<<set $wifeSuggestibility to 0>> /* Внушаемость */
<<set $wifeRide = false>>
<<set $wifeLick = false>>
/* MAID */
<<set $maidName to "Vanessa">>
<<set $maidObedience to 100>> /* Послушание */
<<set $maidInfluence to 0>> /* Влияние */
/* SECRETARY */
<<set $secName to "Chloe">>
<<set $secInfluence to 0>> /* влияние */
<<set $secAudacity to 0>> /* наглость */
/* BEST FRIEND */
<<set $bffName to "Ryan">>
<<set $bffLoyalty to 100>> /* Лояльность к ГГ */
/* EX GF */
<<set $exgfName to "Ember">>
<<set $exgfToxicity to 100>> /* Токсичность */
<<set $exgfAttitude to 0>> /* Отношение к ГГ */
/* WIFE'S BESTIE */
<<set $wfriendName to "Jessica">>
<<set $wfriendInfluence to 0>> /* Влияние */
<<set $wfriendAudacity to 0>> /* Неуважение к ГГ */
/* EX GFF */
<<set $exgffName to "Kate">>
<<set $exgffAttitude to 10>> /* Отношение к ГГ */
<<set $exgffLeverage to 0>> /* Рычаг для шантажа */
/* ГЛ. ФИНАНСИСТ */
<<set $finName to "Grace">>
<<set $finProff to 100>> /* Отношение к работе */
<<set $finLoyalty to 100>> /* Лояльность к ГГ */
/* ДРУГ, МУЖ БЕСТИИ */
<<set $friendName to "Martin">>
<<set $friendHenpecked to 0>> /* Подкаблучник */
/* БЫВШИЙ БОСС */
<<set $exbossName to "Vladimir">>
<<set $exbossControl to 10>> /* власть над твоим окружением */
/* ВЫБОРЫ И ПОСЛЕДСТВИЯ */
<<set $helpedJessicaShoes = false>>
<<set $chloeForgiven = false>>
<<set $backyardServant = false>>
<<set $livingroomServant = false>>
<<set $firedSteve = false>>
/* ДРУГИЕ ПЕРСОНАЖИ */
<<set $worker1Name = "Mark">>
<<set $worker2Name = "Steve">>
<<set $lilyName = "Lily">>
<<set $passerbyName = "Passerby">>
<<set $unknownName = "???">>
/* ИВЕНТЫ */
<<set $events = {
office: { stage: 0, delay: 0 },
backyard: { stage: 0, delay: 0 },
livingroom: { stage: 0, delay: 0 },
mall_clothes: { stage: 0, delay: 0 },
cafe: { stage: 0, delay: 0 },
seccafe: { stage: 0, delay: 0 }
}>><<widget "nextPhase">>
<<nobr>>
<<run setup.advanceTime()>>
<<updateWorld>>
<</nobr>>
<</widget>>
<<widget "skipToMorning">>
<<nobr>>
<<for $pIndex != 0>>
<<run setup.advanceTime()>>
<</for>>
<<updateWorld>>
<</nobr>>
<</widget>>
<<widget "display_char_info">><<nobr>>
<<set _c = setup.charsDB[$selectedChar]>>
<<if _c>>
<div class="char-profile">
<<if _c.met>>
/* ОТКРЫТЫЙ ПЕРСОНАЖ */
<div class="profile-header">
<img @src="_c.avatar" class="profile-avatar">
<div class="title-container">
<h2>_c.name</h2>
<div class="profile-status">
<<switch $selectedChar>>
<<case "wife">>
<<if $wifeSub <= 20>>
<<if $lang == "ru">>Моя госпожа<<else>>My Mistress<</if>>
<<else>>
<<if $lang == "ru">>Моя жена<<else>>My Wife<</if>>
<</if>>
<<case "sec">>
<<if $secAuthority >= 80>>
<<if $lang == "ru">>Лидер офиса<<else>>Office Leader<</if>>
<<else>>
<<if $lang == "ru">>Секретарь<<else>>Secretary<</if>>
<</if>>
<<case "maid">>
<<if $maidObedience >= 50>>
<<if $lang == "ru">>Преданная служанка<<else>>Devoted Servant<</if>>
<<else>>
<<if $lang == "ru">>Хозяйка дома<<else>>Housekeeper<</if>>
<</if>>
<<case "wfriend">>
<<if $wfriendInfluence >= 70>>
<<if $lang == "ru">>Семейный руководитель<<else>>Family Leader<</if>>
<<else>>
<<if $lang == "ru">>Подруга жены<<else>>Wife's Friend<</if>>
<</if>>
<<case "friend">>
<<if $friendHenpecked >= 50>>
<<if $lang == "ru">>Тень Джессики<<else>>Jessica's Shadow<</if>>
<<else>>
<<if $lang == "ru">>Приятель<<else>>Old Acquaintance<</if>>
<</if>>
<<case "bff">>
<<if $bffLoyalty <= 20>>
<<if $lang == "ru">>Бывший друг<<else>>Former Friend<</if>>
<<else>>
<<if $lang == "ru">>Лучший друг<<else>>Best Friend<</if>>
<</if>>
<<case "fin">>
<<if $lang == "ru">>Фин. директор<<else>>CFO<</if>>
<<case "exgf">>
<<if $lang == "ru">>Бывшая девушка<<else>>Ex Girlfriend<</if>>
<<case "exboss">>
<<if $lang == "ru">>Бывший босс<<else>>Former Boss<</if>>
<<case "exgff">>
<<if $lang == "ru">>Подруга детства<<else>>Childhood friend<</if>>
<<default>>
<<if $lang == "ru">>Контакт<<else>>Contact<</if>>
<</switch>>
</div>
</div>
</div>
<div class="stats-container">
<<for _s range _c.stats>>
<<set _val = variables()[_s.var] || 0>>
<div class="stat-row-numeric">
<span class="stat-label">_s.labels[$lang]</span>
<span class="stat-value-big">_val %</span>
</div>
<</for>>
</div>
<<else>>
/* СКРЫТЫЙ ПЕРСОНАЖ */
<div class="unknown-char-view">
<div class="profile-header">
<div class="profile-avatar unknown-ava">?</div>
<div class="title-container">
<h2>???</h2>
<div class="profile-status">
<<if $lang == "ru">>Личность не установлена<<else>>Unknown Identity<</if>>
</div>
</div>
</div>
<div class="placeholder-text">
<<if $lang == "ru">>Вы еще не встречали этого персонажа.<<else>>You haven't met this character yet.<</if>>
</div>
</div>
<</if>>
</div>
<</if>>
<</nobr>><</widget>>
<<widget "showHeroStats">>
<<script>>
var lang = State.variables.lang;
var title = (lang === "ru" ? "Мое досье" : "My Profile");
Dialog.setup(title, "hero-stats-overlay");
Dialog.wiki(Story.get("HeroStatsContent").processText());
Dialog.open();
<</script>>
<</widget>>
<<widget "roomMenu">>
<<nobr>>\
<div class="navigation-container">
<div class="room-grid">
/* СПАЛЬНЯ */
<<if passage() != "free_bedroom">>
<div class="room-card" onclick="SugarCube.Engine.play('free_bedroom')">
<<checkRoomIcons "free_bedroom">>
<img src="data/location/bedroom.webp">
<div class="room-label"><<print ($lang == "ru" ? "Спальня" : "Bedroom")>></div>
</div>
<</if>>
/* ГОСТИНАЯ */
<<if passage() != "free_livingroom">>
<div class="room-card" onclick="SugarCube.Engine.play('free_livingroom')">
<<checkRoomIcons "free_livingroom">>
<img src="data/location/livingroom.webp">
<div class="room-label"><<print ($lang == "ru" ? "Гостиная" : "Living Room")>></div>
</div>
<</if>>
/* ВАННАЯ */
<<if passage() != "free_bathroom">>
<div class="room-card" onclick="SugarCube.Engine.play('free_bathroom')">
<<checkRoomIcons "free_bathroom">>
<img src="data/location/bathroom.webp">
<div class="room-label"><<print ($lang == "ru" ? "Ванная" : "Bathroom")>></div>
</div>
<</if>>
/* КУХНЯ */
<<if passage() != "free_kitchen">>
<div class="room-card" onclick="SugarCube.Engine.play('free_kitchen')">
<<checkRoomIcons "free_kitchen">>
<img src="data/location/kitchen.webp">
<div class="room-label"><<print ($lang == "ru" ? "Кухня" : "Kitchen")>></div>
</div>
<</if>>
/* КАБИНЕТ */
<<if passage() != "free_cabinet">>
<div class="room-card" onclick="SugarCube.Engine.play('free_cabinet')">
<<checkRoomIcons "free_cabinet">>
<img src="data/location/cabinet.webp">
<div class="room-label"><<print ($lang == "ru" ? "Кабинет" : "Cabinet")>></div>
</div>
<</if>>
/* ЗАДНИЙ ДВОР */
<<if passage() != "free_backyard">>
<div class="room-card" onclick="SugarCube.Engine.play('free_backyard')">
<<checkRoomIcons "free_backyard">>
<img src="data/location/backyard.webp">
<div class="room-label"><<print ($lang == "ru" ? "Задний двор" : "Backyard")>></div>
</div>
<</if>>
/* КОМНАТА УБОРЩИЦЫ */
<<if $day >= 20 and passage() != "free_housekeeper">>
<div class="room-card" onclick="SugarCube.Engine.play('free_housekeeper')">
<<checkRoomIcons "free_housekeeper">>
<img src="data/location/maid.webp">
<div class="room-label"><<print ($lang == "ru" ? "Комната уборщицы" : "Maid's Room")>></div>
</div>
<</if>>
<<if passage() != "free_exithouse">>
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_exithouse')">
<img src="data/location/city_day.webp">
<div class="room-label"><<print ($lang == "ru" ? "Выйти из дома" : "Leave Home")>></div>
</div>
<</if>>
</div>
</div>
<</nobr>>\
<</widget>>
<<widget "updateWorld">>\
<<set $wifeLoc = "none">>\
<<set $wfriendLoc = "none">>\
<<set $friendLoc = "none">>\
<<set $secLoc = "none">>\
<<if $scheduleStage == 1>>\
<<if $wdIndex == 0>>\
<<if $pIndex == 0>><<set $wifeLoc = "free_bathroom">>\
<<elseif $pIndex == 1>><<set $wifeLoc = "free_kitchen">>\
<<elseif $pIndex == 2>><<set $wifeLoc = "free_livingroom">>\
<<elseif $pIndex == 3>><<set $wifeLoc = "free_bedroom">>\
<</if>>\
<</if>>\
<<if $wdIndex == 1>>\
<<if $pIndex == 0>><<set $wifeLoc = "free_kitchen">>\
<<elseif $pIndex == 1>><<set $wfriendLoc = "free_cafe">><<set $wifeLoc = "free_gym">>\
<<elseif $pIndex == 2>><<set $wifeLoc = "free_backyard">>\
<<elseif $pIndex == 3>><<set $wifeLoc = "free_bedroom">>\
<</if>>\
<</if>> \
<<if $wdIndex == 2>>\
<<if $pIndex == 0>><<set $wifeLoc = "free_kitchen">>\
<<elseif $pIndex == 1>><<set $wifeLoc = "free_mall_clothes">><<set $wfriendLoc = "free_mall_clothes">><<set $friendLoc = "free_mall_clothes">>\
<<elseif $pIndex == 2>><<set $wifeLoc = "free_livingroom">><<set $wfriendLoc = "free_livingroom">>\
<<elseif $pIndex == 3>><<set $wifeLoc = "free_bedroom">>\
<</if>>\
<</if>> \
<<if $wdIndex == 3>>\
<<if $pIndex == 0>><<set $wifeLoc = "free_kitchen">>\
<<elseif $pIndex == 1>><<set $wfriendLoc = "free_cafe">><<set $wifeLoc = "free_gym">>\
<<elseif $pIndex == 2>><<set $wifeLoc = "free_backyard">>\
<<elseif $pIndex == 3>><<set $wifeLoc = "free_bedroom">>\
<</if>>\
<</if>> \
<<if $wdIndex == 4>>\
<<if $pIndex == 0>><<set $wifeLoc = "free_bathroom">>\
<<elseif $pIndex == 1>><<set $wifeLoc = "free_cafe">>\
<<elseif $pIndex == 2>><<set $wifeLoc = "free_livingroom">>\
<<elseif $pIndex == 3>><<set $wifeLoc = "free_bedroom">>\
<</if>>\
<</if>> \
<<if $wdIndex == 5>>\
<<if $pIndex == 0>><<set $wifeLoc = "free_bedroom">>\
<<elseif $pIndex == 1>><<set $secLoc = "free_cafe">><<set $wifeLoc = "free_mall_clothes">><<set $wfriendLoc = "free_mall_clothes">><<set $friendLoc = "free_mall_clothes">>\
<<elseif $pIndex == 2>><<set $wifeLoc = "free_livingroom">><<set $wfriendLoc = "free_livingroom">>\
<<elseif $pIndex == 3>><<set $wifeLoc = "free_bedroom">>\
<</if>>\
<</if>>\
<<if $wdIndex == 6>>\
<<if $pIndex == 0>><<set $wifeLoc = "free_bedroom">>\
<<elseif $pIndex == 1>><<set $wifeLoc = "free_cafe">><<set $wfriendLoc = "free_cafe">><<set $secLoc = "free_gym">>\
<<elseif $pIndex == 2>><<set $wifeLoc = "free_backyard">><<set $wfriendLoc = "free_backyard">>\
<<elseif $pIndex == 3>><<set $wifeLoc = "free_bedroom">>\
<</if>>\
<</if>> \
<</if>> \
<</widget>>\
<<widget "checkRoomIcons">>\
<div class="room-char-icons">\
<<if $wifeLoc == _args[0]>><div class="mini-icon icon-wife"></div><</if>>\
<<if $wfriendLoc == _args[0]>><div class="mini-icon icon-wfriend"></div><</if>>\
<<if $friendLoc == _args[0]>><div class="mini-icon icon-friend"></div><</if>>\
<<if $secLoc == _args[0]>><div class="mini-icon icon-sec"></div><</if>>\
</div>\
<</widget>>\<<nobr>>\
<div id="game-logo">
<img src="data/ui/logo.webp">
</div>
<br>
<div class="stats-panel">
<div class="sidebar-row">
<span class="sidebar-label">
<<ru>>День $day:<</ru>><<en>>Day $day:<</en>>
</span>
<span class="sidebar-value">
<<print setup.weekDayNames[$lang][$wdIndex]>>
</span>
</div>
<div class="sidebar-row">
<span class="sidebar-label">
<<ru>>Время:<</ru>><<en>>Time:<</en>>
</span>
<span class="sidebar-value">
<<print setup.timeNames[$lang][$pIndex]>>
</span>
</div>
<<if $allowSkip and !tags().includes("event")>>
<div class="skip-container">
<<button `($lang == "ru" ? "ПРОПУСК" : "SKIP")`>>
<<run setup.advanceTime()>>
<<goto `passage()`>>
<<updateWorld>>
<</button>>
</div>
<</if>>
<hr>
<div class="sidebar-row">
<span class="sidebar-label">
<<ru>>Деньги:<</ru>><<en>>Cash:<</en>>
</span>
<span class="sidebar-value">
$ $money
</span>
</div>
<div class="sidebar-row">
<span class="sidebar-label">
<<ru>>Банк:<</ru>><<en>>Bank:<</en>>
</span>
<span class="sidebar-value">
$ $bank
</span>
</div>
</div>
<div class="skip-container">
<<if $lang == "ru">>
<<button "Мое досье">><<run setup.openStats()>><</button>>
<<else>>
<<button "My Profile">><<run setup.openStats()>><</button>>
<</if>>
</div>
<div class="skip-container">
<<if $lang == "ru">>
<<button "Блокнот">><<run setup.openNotebook()>><</button>>
<<else>>
<<button "Notebook">><<run setup.openNotebook()>><</button>>
<</if>>
</div>
<hr>
<div id="menu-story">
<<if $lang == "ru">>
<<link "СОХРАНЕНИЯ">><<run UI.saves()>><</link>>
<<link "НАСТРОЙКИ">><<run UI.settings()>><</link>>
<<link "ЗАНОВО">><<run UI.restart()>><</link>>
<<else>>
<<link "SAVES">><<run UI.saves()>><</link>>
<<link "SETTINGS">><<run UI.settings()>><</link>>
<<link "RESTART">><<run UI.restart()>><</link>>
<</if>>
</div>
<div class="support-links-row">
<a href="https://www.patreon.com/modexon" target="_blank" class="support-btn patreon" title="Patreon">
<img src="data/ui/patreon.webp" alt="Patreon">
</a>
<a href="https://www.boosty.to/modexon" target="_blank" class="support-btn boosty" title="Boosty">
<img src="data/ui/boosty.webp" alt="Boosty">
</a>
<a href="https://www.subscribestar.com/modexon" target="_blank" class="support-btn ss" title="Subscribe Star">
<img src="data/ui/ss.webp" alt="Subscribe Star">
</a>
</div>
<</nobr>>\<<nobr>>\
<div class="main-menu-container">
<img src="data/ui/title.webp" width="600" height=auto>
<div class="game-logo">
<span class="version">$ver</span>
</div>
<br>
<div class="lang-nav">
<<include "LangButtons">>
</div>
<div class="dynamic-content">
<<include "StartContent">>
</div>
</div>
<</nobr>>\<div class="main-menu-container">\
<div class="game-logo">\
<<ru>><h2>Давай познакомимся!</h2><</ru>>\
<<en>><h2>Let's get acquainted!</h2><</en>>\
</div>\
<div class="game-description">\
<<ru>>Прежде чем мы начнем, как будут звать героев этой истории?<</ru>>\
<<en>>Before we begin, what will the names of the characters in this story be?<</en>>\
</div>\
<div class="input-section">\
<div class="input-group">\
<label><<ru>>Ваше имя:<</ru>><<en>>Your name:<</en>></label>\
<<textbox "$playerName" "Sam">>
</div>\
<div class="input-group">\
<label><<ru>>Имя жены:<</ru>><<en>>Wife's name:<</en>></label>\
<<textbox "$wifeName" "Emily">>
</div>\
</div>\
<<ru>>P.s. в игре присутствуют музыка и звуки. При нажатии клавиши ниже вы услышите это. По умолчанию громкость установлена на 20% во избежание резкого начала, но вы всегда можете изменить это в настройках. Если вы не слышите ничего - настройте воспроизведение в браузере.<</ru>>
<<en>>P.s. There is music and sounds in the game. When you press the key below, you will hear it. By default, the volume is set to 20% to avoid a sudden start, but you can always change it in the settings. If you do not hear anything, please adjust the playback in your browser.<</en>>
<div id="choice-area">\
<<button `($lang == "ru" ? "ПОДТВЕРДИТЬ И НАЧАТЬ" : "CONFIRM & START")`>>
<<if $playerName.trim() === "" or $wifeName.trim() === "">>
<<if $lang == "ru">>
<<replace "#error-msg">>Пожалуйста, заполните оба имени.<</replace>>
<<else>>
<<replace "#error-msg">>Please fill in both names.<</replace>>
<</if>>
<<else>>
<<goto "Beach">>
<</if>>\
<</button>>\
</div>\
<div id="error-msg" style="color: #ff4d4d; margin-top: 10px; font-weight: bold;"></div>
</div><<audio "bgm_ost" volume 0 fadein loop>>\
<div class="chapter-header">\
<h2>\
<<ru>>Акт 1. Глава 1.<</ru>>\
<<en>>Act 1. Chapter 1.<</en>>\
</h2>\
<h4>\
<<ru>>Введение<</ru>>\
<<en>>Intro<</en>>\
</h4>\
<div class="header-line"></div>\
</div>\
<<timed 3s t8n>>\
<<en>><div class="msg-box-autor">Just a few years back, $playerName’s life was about as ordinary as it gets. Maybe even a bit too mundane for its own good. Growing up in a small town with a family that was constantly scraping by, it didn't take him long to realize that if he ever wanted to make something of himself, he’d have to pave his own way. While most of the guys he knew were out hitting the parties or just killing time with the crew, $playerName was usually holed up at home, glued to his computer. He’d spend hours reading up on tech, messing around with code, and breaking software... then, every once in a while, actually stumbling upon a way to fix it. Over time, it just became second nature. $playerName started dabbling in little apps—nothing to write home about, really, just him trying to put together some handy tools to tackle those annoying everyday tasks.</div><</en>>\
<<ru>><div class="msg-box-autor">Ещё несколько лет назад жизнь главного героя была вполне обычной. Даже слишком обычной. $playerName вырос в небольшом городе в небогатой семье и довольно рано понял, что если хочет чего-то добиться — придётся рассчитывать только на себя. Пока большинство его знакомых гуляли по вечеринкам или просто зависали с друзьями, он чаще сидел дома за компьютером. Читал, пробовал писать код, ломал программы… иногда даже случайно чинил их. Со временем это превратилось в привычку. $playerName начал делать небольшие приложения. Ничего грандиозного — просто полезные инструменты, которые решали разные мелкие задачи.</div><</ru>>\
<<ru>><div class="msg-box-autor">Во времена колледжа, когда все приложения были только в планах, $playerName познакомился с прекрасной девушкой по имени $wifeName. Она поддерживала его во всех начинаниях, хотя, честно говоря, совсем не разбиралась в том, чем именно он часами занимается за компьютером. Вскоре они поженились. Всё это происходило еще в те годы, когда денег катастрофически не хватало, поэтому можно было с уверенностью сказать: $wifeName была с ним точно не из-за счета в банке.</div><</ru>>\
<<en>><div class="msg-box-autor">Back in his college days, when applications were still just rough ideas, $playerName met a wonderful girl named $wifeName. She stood by him through thick and thin, though, in all honesty, she didn't have the slightest clue what he was actually doing holed up with his computer for hours on end. It wasn't long before they tied the knot. Since all of this happened back when they were essentially broke, it’s safe to say that $wifeName was with him for all the right reasons—it definitely wasn't about the money.</div><</en>>\
<<en>><div class="msg-box-autor">Then, out of nowhere, one of our hero’s apps actually caught the eye of a local firm. Strictly speaking, it was just a run-of-the-mill data processing tool, but I guess they took a liking to how $playerName had put it all together. The negotiations were over before he knew it. At some point, it suddenly clicked—he’d just sold his work for the kind of money he’d only ever seen on the big screen. Life changed virtually overnight.
The cash started flowing in.
The new house.
The new car.
Every once in a while, $playerName would still catch himself thinking it all felt a bit surreal. It finally seemed like he could just take a breather and settle into the quiet life.</div><</en>>\
<<ru>><div class="msg-box-autor">Вдруг в один момент одно из приложений нашего героя неожиданно заинтересовало местную компанию. По сути, это была обычная программа для анализа и обработки данных, но, видимо, им понравилось как всё было сделано. Переговоры прошли довольно быстро. И в какой-то момент $playerName вдруг понял, что только что продал своё приложение за сумму, которую раньше видел разве что в фильмах. Жизнь изменилась почти сразу.
Появились деньги.
Новый дом.
Новая машина.
Иногда он даже ловил себя на мысли, что всё это до сих пор кажется немного нереальным. Казалось, что теперь можно просто выдохнуть и жить спокойно.
</div><</ru>>\
<<en>><div class="msg-box-autor">But a while after the deal went through, strange system notifications started popping up on $playerName’s old account. We’re talking astronomical sums being wired to obscure addresses, sometimes even overseas. At first, $playerName brushed it off as a routine bug.
Then, he decided to dig a little deeper.
As it turned out, the alerts were coming straight from the very system he’d built himself. It didn't take long for the company’s higher-ups to catch on, either. And, at first glance, they were—to put it mildly—none too pleased. But instead of jumping straight to legal battles or a messy fallout, they opted for a more low-key approach: a hush-hush deal to settle things quietly. When the dust settled, he walked away with a stake in the business… and an office to call his own. Just like that, $playerName’s life took another sharp turn.</div><</en>>\
<<ru>><div class="msg-box-autor">Но спустя некоторое время после продажи приложения на его старый аккаунт начали приходить странные системные уведомления о баснословных переводах денег куда-то на неизвестные адреса, а иногда даже в другие страны. Сначала $playerName решил, что это обычный баг.
Потом решил проверить.
Оказалось, что уведомления приходят из той самой системы, которую он когда-то написал. Похоже, руководство компании тоже довольно быстро это заметило. И, на первый взгляд, было мягко говоря не в восторге. Но вместо конфликтов и разбирательств они предложили простой вариант — тихо договориться. В итоге у него появилось место в бизнесе… и собственный офис.
Так его жизнь изменилась ещё раз.</div><</ru>>\
<img src="data/location/start_beach.webp" class="scene-img">\
<<ru>><div class="msg-box-autor">Хотя сегодня всё было куда проще.
Последний день отдыха на курорте почти закончился. Скоро им с женой нужно было возвращаться домой.
И, честно говоря, $playerName пока даже не подозревал, сколько всего его там ждёт.
</div><</ru>>\
<<en>><div class="msg-box-autor">Mind you, today things were far more straightforward. The final day of their resort getaway was just about winding down. Before long, he and his wife would have to head back home.
And, truth be told, $playerName had absolutely no inkling of just how much was waiting for him once they got there.</div><</en>>\
<<ru>><<say "wife" "$playerName! Ты меня слышишь? Ты ненадолго задумался, я думала ты уснул прямо на песке.">><</ru>>\
<<en>><<say "wife" "Earth to $playerName! You went quiet for a moment, I was starting to think you'd zonked out on the beach.">><</en>>\
<<ru>><<say "hero" "Похоже пора возвращаться к реальности." "thought">><</ru>>\
<<en>><<say "hero" "Looks like it's time to get back to reality." "thought">><</en>>\
<<ru>><<say "hero" "Прости дорогая, я просто...">><</ru>>\
<<en>><<say "hero" "Yeah, sorry honey, I just...">><</en>>\
<div id="choice-area">\
<<nobr>>
/* --- ВАРИАНТ 1: О ТЕБЕ --- */
<<button `(State.variables.lang == "ru" ? "«О твоей красоте...»" : "“Regarding your radiance...”")`>>
<<set $wifeLove += 1>>
<<run $historyOfChoices.push({
ru: "Вы сделали комплимент $wifeName.",
en: "You complimented $wifeName."
})>>
<<replace "#choice-area" t8n>>
<<ru>>
<<say "hero" "Просто засмотрелся на тебя. Твоя красота сегодня буквально ослепляет.">>
<<say "wife" "Ой, перестань, ты меня смущаешь!">>
<</ru>>
<<en>>
<<say "hero" "I was simply captivated by you. Your radiance is truly arresting today.">>
<<say "wife" "Oh stop, you're making me blush!">>
<</en>>
<<include "Scene_Bar_Transition">>
<</replace>>
<</button>>
/* --- ВАРИАНТ 2: О ПРОШЛОМ --- */
<<button `(State.variables.lang == "ru" ? "«О прошлом...»" : "“About the past...”")`>>
<<replace "#choice-area" t8n>>
<<ru>>
<<say "hero" "Просто задумался о былых временах на секунду, не переживай.">>
<<say "wife" "Не стоит думать о плохом в такой прекрасный день.">>
<</ru>>
<<en>>
<<say "hero" "Oh, nothing. Just lost in thought about the past, don't worry.">>
<<say "wife" "Let's not cloud such a magnificent day with somber thoughts.">>
<</en>>
<<include "Scene_Bar_Transition">>
<</replace>>
<</button>>
<</nobr>>
</div>\
<</timed>><<nobr>>\
<div class="game-description">
<<ru>>Добро пожаловать в мою историю. Это интерактивное приключение, где каждое ваше решение влияет на финал. Погрузитесь в мир интриг, опасностей и страсти.<</ru>>
<<en>>Welcome to my story. This is an interactive adventure where every decision you make affects the finale. Immerse yourself in a world of intrigue, danger, and passion.<</en>>
</div>
<div class="disclaimer-box">
<h3 style="color: #ff4d4d;"><<ru>>ДИСКЛЕЙМЕР<</ru>><<en>>DISCLAIMER<</en>></h3>
<<ru>>
<p>Данная игра содержит контент категории <strong>18+ (Explicit Content)</strong>, включая сцены сексуального характера, ненормативную лексику и употребление алкоголя.</p>
<p>Продолжая, вы подтверждаете, что достигли совершеннолетия.</p>
<</ru>>
<<en>>
<p>This game contains <strong>18+ (Explicit Content)</strong>, including sexual scenes, strong language, and alcohol consumption.</p>
<p>By continuing, you confirm that you are of legal age.</p>
<</en>>
</div>
<div id="choice-area">
<<if $lang == "ru">>
<<button "МНЕ ЕСТЬ 18 ЛЕТ (ИГРАТЬ)">>
<<goto "Names">>
<</button>>
<<button "МНЕ МЕНЬШЕ 18 ЛЕТ (ВЫХОД)">>
<<run window.location.href = "https://www.youtube.com/watch?v=dQw4w9WgXcQ">>
<</button>>
<<else>>
<<button "I AM 18+ (PLAY)">>
<<goto "Names">>
<</button>>
<<button "I AM UNDER 18 (EXIT)">>
<<run window.location.href = "https://www.youtube.com/watch?v=dQw4w9WgXcQ">>
<</button>>
<</if>>
</div>
<</nobr>>\<<button "Русский">>\
<<set $lang = "ru">>\
<<replace ".dynamic-content">><<include "StartContent">><</replace>>\
<<replace ".lang-nav">><<include "LangButtons">><</replace>>\
<</button>>\
<<button "English">>\
<<set $lang = "en">>\
<<replace ".dynamic-content">><<include "StartContent">><</replace>>\
<<replace ".lang-nav">><<include "LangButtons">><</replace>>\
<</button>>\
<<script>>
setTimeout(function() {
var currentLang = State.variables.lang;
var buttons = document.querySelectorAll('.lang-nav button');
buttons.forEach(function(btn) {
var text = btn.textContent.toLowerCase();
btn.classList.remove('active-lang');
if ((currentLang === "ru" && text.includes("рус")) ||
(currentLang === "en" && text.includes("eng"))) {
btn.classList.add('active-lang');
}
});
}, 40);
<</script>>\<<nobr>>
<div class="nb-container">
<div class="nb-sidebar">
<div class="nb-sidebar-header">
<<print ($lang == "ru" ? "ПЕРСОНАЖИ" : "CHARACTERS")>>
</div>
<<for _id, _char range setup.charsDB>>
<<capture _id>>
<div @class="'nb-char-item' + ($selectedChar === _id ? ' active' : '')">
<div class="nb-char-row">
<span class="nb-char-name">
/* ПРОВЕРКА ЗНАКОМСТВА */
<<if setup.charsDB[_id].met>>
<<= setup.charsDB[_id].name >>
<<else>>
???
<</if>>
</span>
</div>
<<link "">>
<<set $selectedChar = _id>>
<<replace "#notebook-content-area">><<include "NotebookContent">><</replace>>
<</link>>
</div>
<</capture>>
<</for>>
</div>
<div class="nb-main-content">
<<display_char_info>>
</div>
</div>
<</nobr>><<nobr>>
<div class="notebook-style-container">
<div class="nb-header">
<div class="nb-avatar-frame">
<img @src="setup.characters.hero.avatar" class="nb-avatar">
</div>
<div class="nb-title-block">
<h1 class="nb-name">$playerName</h1>
</div>
</div>
<div class="nb-bio">
<<print ($lang == "ru" ? $playerBio.ru : $playerBio.en)>>
</div>
<div class="nb-stats-list">
<div class="nb-stat-row">
<span class="nb-label"><<if $lang == "ru">>ИНТЕЛЛЕКТ (IQ)<<else>>INTELLIGENCE (IQ)<</if>></span>
<span class="nb-value">$mcIq</span>
</div>
<div class="nb-stat-row">
<span class="nb-label"><<if $lang == "ru">>ВОЛЯ<<else>>WILLPOWER<</if>></span>
<span class="nb-value">$mcWillpower %</span>
</div>
<div class="nb-stat-row">
<span class="nb-label"><<if $lang == "ru">>УВЕРЕННОСТЬ В СЕБЕ<<else>>SELF-CONFIDENCE<</if>></span>
<span class="nb-value">$mcSC %</span>
</div>
</div>
<div class="nb-history-header">
<<if $lang == "ru">>ИСТОРИЯ РЕШЕНИЙ<<else>>CHOICE HISTORY<</if>>
</div>
<div class="nb-history-body">
<<if def $historyOfChoices and $historyOfChoices.length > 0>>
<<for _i to 0; _i lt $historyOfChoices.length; _i++>>
<div class="nb-history-item">
— <<print ($lang == "ru" ? $historyOfChoices[_i].ru : $historyOfChoices[_i].en)>>
</div>
<</for>>
<<else>>
<div class="nb-no-data">
<<if $lang == "ru">>НЕТ ЗАПИСЕЙ<<else>>NO RECORDS<</if>>
</div>
<</if>>
</div>
</div>
<</nobr>><<ru>>\
<<say "wife" "Кстати говоря. У нас есть немного времени до нашего вечернего вылета домой. Давай пропустим по стаканчику в баре прежде чем вернемся в отель и начнем собирать вещи.">>\
<<say "hero" "Да, я совсем не против провести с тобой время, прежде чем ты опять уснешь в самолете.">>\
<div class="msg-box-autor">$wifeName, смеясь, толкает тебя плечом и вы уходите с пляжа.</div>\
<div class="next-button">\
<<link [[Проследовать в бар|IntroBar]]>>
<<audio "bgm_ost" stop>>
<<nextPhase>>
<</link>>
</div>\
<</ru>>\
<<en>>\
<<say "wife" "By the way, we have a window of time before our evening flight home. Let's head to the bar for a quick toast before we return to the hotel to pack.">>\
<<say "hero" "I'm certainly not opposed to some quality time together before you inevitably drift off on the flight again.">>\
<div class="msg-box-autor">$wifeName gives you a playful nudge, laughing as the two of you make your way off the beach.</div>\
<div class="next-button">\
<<link [[Follow to the bar|IntroBar]]>>
<<audio "bgm_ost" stop>>
<<nextPhase>>
<</link>>
</div>\
<</en>>\<<audio "bgm_juzz" volume 0 fadein loop>>\
<img src="data/location/introbar.jpg" class="scene-img">\
<<nobr>>\
<<ru>>
<div class="msg-box-autor">Бар отеля встречает вас прохладой и негромким джазом. Ты чувствуешь приятную тяжесть в теле — сделка закрыта и приложение, над которым ты работал месяцами, теперь принадлежит крупному холдингу. Вы устроились у стойки, наслаждаясь моментом триумфа.</div>
<<say "wife" "До сих пор не верится. Весь этот труд, бессонные ночи над кодом... Это действительно окупилось, дорогой. Твой успех открывает для нас столько дверей.">>
<<say "wife" "Кстати говоря. Я написала Джессике — моей лучшей подруге. Она так хочет наконец познакомиться с тобой и увидеть наш новый дом, поэтому я пригласила её с Мартином присоединиться к нам за ужином завтра вечером. И.. предупрежу сразу, Джесс иногда бывает немного... напористой. Но она все равно моя лучшая подруга.">>
<div class="msg-box-autor">$wifeName накрывает твою ладонь своей. Её прикосновение теплее, чем песок на том пляже, где ты недавно лежал.</div>
<<say "wife" "Дом огромный, и там наверняка куча пыли после нашего отпуска. Нам придется всё прибрать и приготовить ужин. Это будет непросто, но я хочу, чтобы первое впечатление Джессики было идеальным. Ты ведь поможешь мне?">>
<<say "hero" "Похоже, мои дни в статусе миллионера будут состоять не из шампанского, а из уборки и готовки ха-хах. Но я не против, ведь понимаю, что после дороги будет тяжело заниматься этим всем одной.">>
<div class="msg-box-autor">Ты даришь жене легкую улыбку, притягиваешь ее голову к своей и целуешь. Она целует тебя в ответ несколько секунд, затем вы продолжаете диалог.</div>
<<say "hero" "Я рад, что она будет вместе с Мартином, мы с ним лет сто не виделись. Плюс, благодаря ему я не буду чувствовать себя одиноко смущенным между двумя такими прекраснами дамами как вы.">>
<<say "hero" "Меня до сих пор поражает, насколько тесен мир. Подумать только: твоя лучшая подруга и мой старый приятель поженились еще до того, как выяснилось, что мы все связаны.">>
<<say "wife" "Я тоже была приятно удивлена, когда только узнала. И, согласись, нечестно, что я знаю твоего приятеля, а ты до сих пор не виделся с Джесс. Поэтому я рада, что завтра это наконец-то исправится.">>
<div class="msg-box-autor">Посидев еще некоторое время вы замечаете, что до самолета остались считанные часы. Дабы не собирать вещи в полупьяном состоянии вы решаете больше ничего не заказывать и, попрощавшись с барменом, отправляетесь в номер.</div>
<div id="choice-area">
<<link [[Допить напитки и идти в номер|Intro_Scene_Packing]]>>
<<nextPhase>>
<</link>>
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">The hotel bar greets you with a refreshing chill and the low hum of jazz. You feel a pleasant weight in your body—the deal is sealed, and the app you labored over for months now belongs to a major corporation. You settle in at the counter, savoring the taste of triumph.</div>
<<say "wife" "It still feels surreal. All that relentless effort, the sleepless nights coding... it has truly paid off, darling. Your success is opening so many doors for us.">>
<<say "wife" "By the way, I’ve reached out to Jessica—my closest friend. She’s absolutely dying to finally meet you and see our new home, so I’ve invited her and Martin to join us for dinner tomorrow evening. And... just a fair warning: Jess can be a bit... assertive at times. But she’s my best friend nonetheless.">>
<div class="msg-box-autor">$wifeName rests her palm over yours. Her touch is warmer than the sands of the beach where you were reclining moments ago..</div>
<<say "wife" "Given the sheer scale of the house, it’s inevitably gathered quite a bit of dust while we were away. We’ve got our work cut out for us with the cleaning and dinner prep, but I’m dead set on making sure everything is immaculate for Jessica’s arrival. You’ll back me up on this, right?">>
<<say "hero" "It appears my tenure as a millionaire will be defined not by champagne, but by cleaning and cooking, ha-ha. Still, I don't mind; I realize that after the journey, tackling all of that on your own would be far too taxing.">>
<div class="msg-box-autor">You flash your wife a faint smile, draw her close, and kiss her. She reciprocates for a few moments before the two of you resume your conversation.</div>
<<say "hero" "I’m thrilled she’ll be accompanied by Martin; he and I go back ages, and it’s been ages since we last crossed paths. Plus, having him there means I won't feel outnumbered between two such radiant ladies as yourselves.">>
<<say "hero" "I’m still struck by how remarkably small the world is. To think your best friend and my old mate tied the knot long before it ever came to light that we were all connected.">>
<<say "wife" "I was just as pleasantly surprised when I found out. And you must admit, it’s hardly fair that I’ve met your friend while you’ve yet to be introduced to Jess. I'm glad we're finally rectifying that tomorrow.">>
<div class="msg-box-autor">After lingering a while longer, you realize only a few hours remain before your flight. To avoid packing your things in a half-drunk state, you decide not to order anything else and, after saying goodbye to the bartender, head to your room.</div>
<div id="choice-area">
<<link [[Finish drinks and head to the room|Intro_Scene_Packing]]>>
<<nextPhase>>
<</link>>
</div>
<</en>>
<</nobr>>\<<nobr>>\
<<ru>>
<div class="msg-box-autor">Коридоры отеля тихи, а приглушенный свет ламп делает вечер почти сонным. Когда дверь номера закрывается за вами, шум бара окончательно остается где-то далеко.</div>
<div class="msg-box-autor">На кровати все еще разбросаны вещи после пляжа: полотенца, рубашка, солнцезащитные очки. Чемоданы стоят открытыми у стены, будто терпеливо ждут, когда вы наконец решите их судьбу.</div>
<img src="data/images/act1/hotel.webp" class="scene-img">
<<say "wife" "Ладно, мистер миллионер. Праздник закончился. Пора возвращаться в реальность.">>
<div class="msg-box-autor">$wifeName снимает с плеч легкое платье и аккуратно складывает его на кровать, затем начинает собирать косметику со столика.</div>
<<say "hero" "Жестоко. Я рассчитывал хотя бы сутки пожить в роскоши, прежде чем снова начать работать.">>
<<say "wife" "Мы и так отдыхали тут две недели. Тем более не будет всей этой суеты как до продажи приложения. Теперь всего-то нужно управлять огромным офисом с десятками работников.">>
<div class="msg-box-autor">Ухмыльнувшись, ты открываешь чемодан и начинаешь складывать вещи. Песок с пляжа всё ещё прячется в складках одежды и падает на пол мелкими крупинками.</div>
<<say "hero" "Знаешь… Этот отпуск был именно тем, что нам нужно после всего этого безумия.">>
<<say "wife" "Не переживай. Ты заслужил этот шанс.">>
<div class="msg-box-autor">$wifeName на секунду останавливается и смотрит на тебя. В её взгляде смешиваются гордость и облегчение.</div>
<<say "wife" "Теперь мы можем наконец начать жить спокойно. Без долгов, без стресса, без ночей перед монитором.">>
<div class="msg-box-autor">Ты на мгновение задумываешься о её словах. На столе лежит твой ноутбук — тот самый, на котором было написано всё приложение.</div>
<div class="msg-box-autor">Крышка закрыта. Но ты знаешь, что под ней хранится больше, чем просто код.</div>
<<say "hero" "Спокойно… да. Было бы неплохо попробовать.">>
<div class="msg-box-autor">Сборы занимают еще некоторое время. Чемоданы постепенно наполняются, а номер снова становится таким же аккуратным, каким был при заселении.</div>
<<say "wife" "Ну всё. Кажется, ничего не забыли.">>
<<say "hero" "Если забыли — у нас теперь есть деньги купить это снова.">>
<div class="msg-box-autor">$wifeName тихо смеётся, берет тебя за руку и слегка сжимает пальцы.</div>
<<say "wife" "Тогда полетели домой.">>
<div class="msg-box-autor">Через некоторое время вы покидаете номер, оставляя позади отпуск и море, возвращаясь туда, где некоторые могут ожидать вас не совсем с благими намерениями.</div>
<div id="choice-area">
<<link "Еще немного и дома" "Intro_Tutorial">>
<<audio "bgm_juzz" fadeout>>
<<skipToMorning>>
<</link>>
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">The hotel corridors are quiet, the dim glow of the lamps making the evening feel almost sleepy. When the door to your room closes behind you, the noise of the bar fades away completely.</div>
<div class="msg-box-autor">The bed is still scattered with things from the beach: towels, a shirt, sunglasses. The suitcases stand open by the wall, as if patiently waiting for you to finally decide their fate.</div>
<img src="data/images/act1/hotel.webp" class="scene-img">
<<say "wife" "Alright, Mr. Millionaire. The celebration’s over. Time to get back to reality.">>
<div class="msg-box-autor">$wifeName slips the light dress off her shoulders and neatly folds it onto the bed, then starts gathering her cosmetics from the vanity.</div>
<<say "hero" "Harsh. I was hoping to enjoy at least twenty-four hours of luxury before going back to work.">>
<<say "wife" "We've already spent two weeks relaxing here. Besides, things won’t be nearly as hectic as they were before you sold the app. Now all you have to do is manage a big office with a few dozen employees.">>
<div class="msg-box-autor">With a smirk, you open the suitcase and start packing your clothes. Sand from the beach is still hiding in the folds of the fabric, falling to the floor in tiny grains.</div>
<<say "hero" "You know… this vacation was exactly what we needed after all that madness.">>
<<say "wife" "Don’t worry about it. You earned this chance.">>
<div class="msg-box-autor">$wifeName pauses for a moment and looks at you. There’s a mix of pride and relief in her eyes.</div>
<<say "wife" "Now we can finally start living a little calmer. No debts, no constant stress, no more nights glued to a monitor.">>
<div class="msg-box-autor">For a moment, you think about her words. Your laptop sits on the table — the same one where the entire app was written.</div>
<div class="msg-box-autor">The lid is closed. But you know it holds more than just code beneath it.</div>
<<say "hero" "Calm… yeah. Wouldn’t hurt to give that a try.">>
<div class="msg-box-autor">Packing takes a little while longer. The suitcases slowly fill up, and the room begins to look just as tidy as it did when you first checked in.</div>
<<say "wife" "Alright. Looks like we didn’t forget anything.">>
<<say "hero" "And if we did, we can afford to buy it again now.">>
<div class="msg-box-autor">$wifeName laughs quietly, takes your hand, and gently squeezes your fingers.</div>
<<say "wife" "Then let’s fly home.">>
<div class="msg-box-autor">Not long after, you leave the room behind, leaving the sea and the vacation with it — returning to a place where not everyone may be waiting for you with good intentions.</div>
<div id="choice-area">
<<link "Almost home now" "Intro_Tutorial">>
<<audio "bgm_juzz" fadeout>>
<<skipToMorning>>
<</link>>
</div>
<</en>>
<</nobr>>\<<audio "bgm_ost" volume 0 fadein loop>>\
<div class="chapter-header">\
<h2>\
<<ru>>Акт 1. Глава 2.<</ru>>\
<<en>>Act 1. Chapter 2.<</en>>\
</h2>\
<h4>\
<<ru>>Старые знакомые и новые лица<</ru>>\
<<en>>Old Friends and New Faces<</en>>\
</h4>\
<div class="header-line"></div>\
</div>\
<<timed 3s t8n>>\
<<nobr>>\
<<ru>>
<div class="msg-box-autor">
Дом встречает вас тихим эхом пустых комнат. После двух недель отпуска особняк кажется почти чужим — слишком большим и слишком тихим.
</div>
<img src="data/images/act1/house_inside.webp" class="scene-img" width="600">
<div class="msg-box-autor">
Солнечный свет льется через панорамные окна гостиной, освещая тонкий слой пыли на мебели. Чемоданы падают у входа - вы начинаете привыкать, что теперь это место действительно ваш дом.
</div>
<<say "wife" "Каждый раз, когда я захожу сюда, у меня ощущение, что мы случайно попали в чужой дом."
>>
<<say "hero" "Если это сон, надеюсь, никто не будет меня будить."
>>
<div class="msg-box-autor">
$wifeName тихо смеётся и проходит по комнате, проводя пальцами по поверхности стола. На коже остаётся заметный след пыли.
</div>
<<say "wife" "Ну вот. Я же говорила. После отпуска здесь всё нужно приводить в порядок."
>>
<<say "hero" "Отлично. После прекрасных двух недель отпуска как раз этого нам и не хватало — генеральной уборки в особняке."
>>
<<say "wife" "Не ворчи. Мы справимся."
>>
<div class="msg-box-autor">
Она подбирает с дивана декоративную подушку и поправляет её, словно пытается придать дому хоть немного жизни.
</div>
<<say "wife" "К тому же совсем скоро придут Джессика и Мартин."
>>
<<say "wife" "Я хочу, чтобы всё выглядело идеально."
>>
<<say "hero" "Твоя подруга собирается провести инспекцию!?"
>>
<<say "wife" "Иногда Джесс ведёт себя так, будто она всегда и везде ее проводит."
>>
<div class="msg-box-autor">
$wifeName улыбается, но в её голосе появляется лёгкая неловкость.
</div>
<<say "wife" "Как я и говорила раньше, она просто… часто говорит прежде чем думает."
>>
<<say "hero" "Звучит интригующе... Надеюсь я смогу ей противостоять."
>>
<div class="msg-box-autor">
Вы оба смеётесь.
</div>
<div class="msg-box-autor">
Через некоторое время дом наполняется тихими бытовыми звуками: шум пылесоса, плеск воды на кухне, скрип передвигаемых стульев... Это совсем не похоже на жизнь миллионеров из фильмов.
</div>
<div class="msg-box-autor">
Но почему-то именно эта простая суета делает дом по-настоящему вашим.
</div>
<div class="msg-box-autor">
Спустя пару часов вы оба останавливаетесь посреди кухни, уставшие, но довольные.
</div>
<<say "hero" "Если Джессика не оценит этот подвиг, я буду вынужден выследить ее после ужина и придушить."
>>
<<say "wife" "Главное, что мы сделали всё вместе."
>>
<div class="msg-box-autor">
$wifeName подходит ближе и легко касается твоего плеча.
</div>
<<say "wife" "Я правда горжусь тобой, $playerName."
>>
<div class="msg-box-autor">
На секунду ты ловишь её взгляд — тёплый, искренний и совершенно спокойный.
</div>
<div class="msg-box-autor">
Спокойствие.
Слово, которое звучит всё чаще в последние дни.
</div>
<div class="msg-box-autor">
Но почему-то тебе кажется, что это спокойствие продлится не долго.
</div>
<div class="msg-box-autor">
Вы накрываете стол, расставляя тарелки и бокалы.
</div>
<div class="msg-box-autor">
Гости уже почти на месте. И кажется этот ужин станет первым настоящим вечером между старыми знакомыми и новыми лицами...
</div>
<div id="choice-area">
<<link "Готовы к ужину" "Home_MeetJess">>
<<nextPhase>>
<</link>>
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
The house greets you with the hollow echo of vacant rooms. After a fortnight away, the manor feels almost alien—vast, imposing, and unsettlingly silent.
</div>
<img src="data/images/act1/house_inside.webp" class="scene-img">
<div class="msg-box-autor">
Sunlight streams through the panoramic living room windows, illuminating a thin layer of dust on the furniture. Suitcases drop by the entrance — you’re starting to get used to the fact that this place really is your home now.
</div>
<<say "wife" "Every time I step inside, I get the distinct impression that we’ve accidentally wandered into someone else’s house."
>>
<<say "hero" "If this is a dream, I sincerely hope nobody decides to wake me up."
>>
<div class="msg-box-autor">
$wifeName lets out a soft laugh and drifts across the room, trailing her fingers along the table’s surface. A visible streak of dust remains on her skin.
</div>
<<say "wife" "There. Just as I thought. After being away for so long, this place needs a thorough cleaning."
>>
<<say "hero" "Splendid. Two weeks of blissful vacation, only to be rewarded with deep-cleaning a mansion. Just what I was looking forward to."
>>
<<say "wife" "Don’t be such a grouch. We’ll manage."
>>
<div class="msg-box-autor">
She retrieves a decorative cushion from the sofa and adjusts it, as if trying to breathe a semblance of life back into the house.
</div>
<<say "wife" "Besides, Jessica and Martin will be arriving shortly."
>>
<<say "wife" "I want everything to look absolutely impeccable."
>>
<<say "hero" "Is your friend planning to conduct a formal inspection?"
>>
<<say "wife" "Sometimes Jess acts as though she’s conducting one everywhere she goes."
>>
<div class="msg-box-autor">
$wifeName smiles, though a hint of awkwardness colors her voice.
</div>
<<say "wife" "As I mentioned before... she has a habit of speaking before she thinks."
>>
<<say "hero" "Sounds intriguing. I suppose I’ll have to stand my ground."
>>
<div class="msg-box-autor">
You both share a laugh.
</div>
<div class="msg-box-autor">
Before long, the house is filled with the mundane hum of domestic life: the drone of the vacuum, the splashing of water in the kitchen, the scraping of chairs being moved... It’s a far cry from the effortless lives of cinematic millionaires.
</div>
<div class="msg-box-autor">
Yet, somehow, it is this very bustle that makes the house feel like it finally belongs to you.
</div>
<div class="msg-box-autor">
A few hours later, you both come to a halt in the middle of the kitchen, exhausted yet satisfied.
</div>
<<say "hero" "If Jess doesn't appreciate this Herculean effort, I’ll be forced to hunt her down after dinner."
>>
<<say "wife" "What matters is that we did it all together."
>>
<div class="msg-box-autor">
$wifeName steps closer and lightly brushes your shoulder.
</div>
<<say "wife" "I’m truly proud of you, $playerName."
>>
<div class="msg-box-autor">
For a brief moment, you catch her gaze—warm, sincere, and perfectly tranquil.
</div>
<div class="msg-box-autor">
Tranquility.
A word that has been surfacing more and more frequently in recent days.
</div>
<div class="msg-box-autor">
Yet, for some reason, you suspect this peace will be short-lived.
</div>
<div class="msg-box-autor">
You set the table, arranging the plates and glasses.
</div>
<div class="msg-box-autor">
The guests are nearly here. It seems this dinner will be the first real evening where old acquaintances meet new faces...
</div>
<div id="choice-area">
<<link "Ready to dinner" "Home_MeetJess">>
<<nextPhase>>
<</link>>
</div>
<</en>>
<</nobr>>\
<</timed>>\<<nobr>>\
<<ru>>
<div class="msg-box-autor">Итак, спустя некоторое время наши герои наконец успешно добрались до своего новенького здоровенного пентхауса. Пока они отдыхают после длительного перелета и разбирают свои вещи, позволь немного рассказать о механиках игры, чтобы в дальнейшем не отвлекать тебя от истории. Начнем с того, что в игре присутствует система дней недели и фаз дня, это ты можешь сейчас увидеть слева на боковой панеле. По ходу сюжетного повествования время течет само по себе, но в некоторые моменты тебе будет доступен пропуск времени, если, например, в игре ничего интересного происходить не будет. В дальнейшем некоторые ивенты будут зависеть от времени, поэтому это очень пригодится.</div>
<div class="msg-box-autor">Так же ты мог заметить кнопки <b>"Мое досье"</b> и <b>"Блокнот"</b>. Перейдя в досье ты можешь просмотреть краткую информацию о своем игровом персонаже, которая со временем будет обновляться. Помнишь например ту сцену на пляже, где ты выбирал, о чем задумался? Так вот, если ты сказал своей жене о ее красоте, то сможешь увидеть это внизу своего досье, в ином случае история решений будет пуста.</div>
<div class="msg-box-autor">Помимо этого, почти у каждого персонажа, включая главного героя, имеются собственные основные видимые характеристики. У вашего персонажа они находятся в досье, у неигровых - в блокноте. Поэтому плавно перейдем ко второй кнопке <b>"Блокнот"</b>. О персонажах, которых вы уже повстречали на своем пути вы можете почитать здесь краткую информацию: кем они приходятся герою, а так же увидеть их основные характеристики. У $wifeName это например любовь к вам, ее общая покорность и склонность к внушению со стороны персонажей; в то время как у других характеристики могут быть совсем иными.</div>
<div class="msg-box-autor">Совет от автора: частенько поглядывайте в дневник и досье - следите за всеми показателями и вашей историей решений, чтобы понимать где вы ошиблись. Но не забывайте, что некоторые поворотные моменты будут зависеть не только от видимых характеристик.</div>
<div class="msg-box-autor">Итак, если вы устали от моего занудного повествования и готовы окунуться в домашний уют героев, смело нажимайте на кнопочку ниже.
Желаю удачного и интересного написания своей личной индивидулаьной истории!</div>
<div id="choice-area">
<<link "Продолжить историю" "Scene_Home">>
<<nextPhase>>
<</link>>
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">At long last, our protagonists have arrived at their palatial new penthouse. While they take a moment to recover from their grueling flight and begin the arduous task of unpacking, allow me to briefly elucidate the game’s core mechanics. This will ensure that once the story gains momentum, nothing distracts you from the unfolding drama. First and foremost, the game operates on a calendar system featuring days of the week and distinct diurnal phases, which you can observe on the left-hand sidebar. While time typically flows in sync with the narrative, there will be instances where you can manually skip ahead—particularly during quieter moments. As you progress, many pivotal events will be time-dependent, so keep a close eye on the clock.</div>
<div class="msg-box-autor">Furthermore, you may have noticed the "My Profile" and "Notebook" buttons. Your profile offers a comprehensive overview of your character, which will evolve as the story unfolds. Remember the scene on the beach where you chose the nature of your reflections? If you complimented your wife on her radiance, that choice is now etched into your profile’s history; otherwise, your record of decisions will remain vacant. Every choice leaves a mark.</div>
<div class="msg-box-autor">Beyond that, almost every individual in this world—yourself included—possesses a set of core visible attributes. Your own statistics are housed within your profile, while those of the NPCs can be found in your notebook. This brings us to the second vital tool: the "Notebook." Here, you can review detailed profiles of the characters you encounter, outlining their relationship to $playerName and their primary traits. For $wifeName, this includes her Love, her general Submissiveness, and her Suggestibility to outside influence. Be warned: other characters will possess vastly different, and perhaps more sinister, attributes.</div>
<div class="msg-box-autor">A word of advice from the author: consult your notebook and profile frequently. Monitor every metric and reflect on your choice history to understand where your path may have veered off course. However, never forget that the most critical turning points may depend on factors far subtler than the visible statistics.</div>
<div class="msg-box-autor">Now, if you have had quite enough of my exposition and are eager to immerse yourself in the domestic "tranquility" of our heroes, feel free to click the button below.
Go forth and weave a narrative that is uniquely yours. Good luck.</div>
<div id="choice-area">
<<link "Continue story" "Scene_Home">>
<<nextPhase>>
<</link>>
</div>
<</en>>
<</nobr>>\<<nobr>>\
<<ru>>
<div class="msg-box-autor">
Звонок в дверь разрезает уютную тишину дома.
$wifeName почти подпрыгивает от радости и быстро идёт открывать.
Через секунду из холла доносятся восторженные вскрики и смех.
Ещё мгновение, и в столовую, словно в театральном спектакле, вплывает она.
</div>
<img src="data/images/act1/meetjess.webp" class="scene-img" width="400">
<div class="msg-box-autor">
Высокая, идеально одетая, с уверенной улыбкой человека, который привык чувствовать себя в центре внимания.
</div>
<<say "wfriend" "Боже мой, $wifeName! Я знала, что твой программист талантлив, но не знала, что он взломал Пентагон!"
>>
<div class="msg-box-autor">
Джессика даже не подходит к столу. Она останавливается посреди комнаты, прижимая ладонь к груди и медленно осматривая потолок, люстру и мебель, словно прикидывая стоимость каждой детали.
</div>
<<say "wfriend" "Мартин, ты это видишь? А мы ещё спорили, какие из обоев следует купить по скидке."
>>
<<say "wfriend" "На фоне этого дома наша квартира выглядит как коробка из-под обуви."
>>
<div class="msg-box-autor">
Позади неё появляется Мартин, нагруженный пакетами. Он выглядит слегка смущённым и явно чувствует себя неуютно в роскошном доме своего старого друга.
</div>
<<say "friend" "Джесс, ну зачем ты так... Привет, $playerName."
>>
<<say "friend" "Дружище, выглядишь на миллион. Буквально. Рад за тебя, правда."
>>
<div class="msg-box-autor">
Он протягивает тебе руку.
</div>
<div class="msg-box-autor">
Но Джессика неожиданно делает шаг вперёд и оказывается между вами двумя. Наконец она внимательно смотрит на тебя — с любопытством, будто оценивает новый интересный экспонат.
</div>
<<say "wfriend" "Так вот ты какой, мистер «Золотой Код»."
>>
<<say "wfriend" "$wifeName столько о тебе рассказывала."
>>
<div class="msg-box-autor">
Её взгляд на секунду задерживается на твоей одежде, затем снова поднимается к лицу.
</div>
<<say "wfriend" "Говорила, ты простой парень."
>>
<<say "wfriend" "Но простые парни обычно не живут во дворцах."
>>
<div class="msg-box-autor">
Она улыбается, словно только что пошутила.
</div>
<<say "hero" "Ха-ха, пока что это всё ещё дом, а не дворец."
>>
<<say "hero" "Проходите, присаживайтесь. Мы с $wifeName как раз закончили с последними приготовлениями."
>>
<<say "hero" "Мы сами всё убирали и готовили, так что за вкус не ручаюсь. Но за старания — точно."
>>
<div class="msg-box-autor">
Джессика уже успела взять со стола бокал вина. Она замирает на секунду, затем медленно переводит взгляд на $wifeName.
</div>
<<say "wfriend" "Подожди… $wifeName, ты серьёзно?"
>>
<<say "wife" "Джесс, я знаю что ты хочешь сказать, но сейчас не время."
>>
<<say "wfriend" "Погоди... В таком огромном доме — и ты сама занималась уборкой!?"
>>
<div class="msg-box-autor">
В её голосе звучит лёгкое удивление, почти забота.
</div>
<<say "wife" "Ну конечно. Нам даже было весело. Мы всё делали вместе."
>>
<<say "wfriend" "Милая..."
>>
<div class="msg-box-autor">
Джессика мягко улыбается и делает глоток вина.
</div>
<<say "wfriend" "«Вместе» — это когда вы выбираете, какое платье в гардероб тебе повесить следующим."
>>
<<say "wfriend" "Запомни одну вещь.
Королевы не моют полы."
>>
<<say "wfriend" "Они выбирают цвет штор."
>>
<div class="msg-box-autor">
$wifeName тихо смеётся и смущается, но её улыбка становится немного... неуверенной.
</div>
<div class="msg-box-autor">
Джессика тем временем поворачивается к тебе и подмигивает.
</div>
<<say "wfriend" "$playerName, надеюсь, ты уже нашел прислугу."
>>
<<say "wfriend" "А то бедняжка $wifeName превратится в Золушку раньше, чем мы допьём это вино."
>>
<div class="msg-box-autor">
Она лениво оглядывается на мужа.
</div>
<<say "wfriend" "Мартин, смотри и учись. А то ты в последнее время совсем расслабился."
>>
<div class="msg-box-autor">
Мартин неловко улыбается и решает немного обсудить с $playerName как прошел его отпуск.
</div>
<img src="data/images/act1/dinner.webp" class="scene-img" width="500">
<div class="msg-box-autor">
Атмосфера за столом слегка меняется.
</div>
<div class="msg-box-autor">
То, чем $wifeName ещё минуту назад гордилась — их совместная работа над домом, уборка и готовка — внезапно начинает казаться чем-то… неправильным.
</div>
<div class="msg-box-autor">
И Джессика это прекрасно видит.
</div>
<div id="choice-area">
[[Спустя время ужин подходит к концу|Home_MeetJess_End]]
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
The chime of the doorbell slices through the cozy silence of the house.
$wifeName practically leaps with joy, hurrying to answer it.
A moment later, ecstatic shrieks and laughter drift in from the foyer.
Then, as if making a grand theatrical entrance, she glides into the dining room.
</div>
<img src="data/images/act1/meetjess.webp" class="scene-img" width="400">
<div class="msg-box-autor">
Tall, impeccably dressed, and wearing the confident smile of someone who is accustomed to being the gravitational center of any room.
</div>
<<say "wfriend" "Good heavens, $wifeName! I knew your programmer was talented, but I didn't realize he’d pulled off a heist at Fort Knox!">>
<div class="msg-box-autor">
Jessica doesn't even approach the table. She stops in the middle of the room, pressing a hand to her chest as her gaze slowly sweeps across the ceiling, the chandelier, and the furniture—as if mentally appraising the cost of every single detail.
</div>
<<say "wfriend" "Martin, are you seeing this? And to think we were actually debating which wallpapers to buy on sale.">>
<<say "wfriend" "Compared to this place, our apartment looks like a shoebox.">>
<div class="msg-box-autor">
Martin appears behind her, laden with shopping bags. He looks slightly sheepish, clearly feeling out of place in his old friend’s opulent new home.
</div>
<<say "friend" "Jess, please... don't start. Hello, $playerName.">>
<<say "friend" "Buddy, you look like a million bucks. Literally. I’m genuinely happy for you.">>
<div class="msg-box-autor">
He extends his hand to you.
</div>
<div class="msg-box-autor">
But Jessica abruptly steps forward, positioning herself between the two of you. Finally, she fixes her gaze on you—with a look of intense curiosity, as if evaluating a fascinating new exhibit.
</div>
<<say "wfriend" "So, this is the man of the hour. Mr. 'Golden Code' himself.">>
<<say "wfriend" "$wifeName has told me so much about you.">>
<div class="msg-box-autor">
Her gaze lingers on your attire for a fraction of a second before returning to your face.
</div>
<<say "wfriend" "She mentioned you were a simple guy.">>
<<say "wfriend" "But simple guys don't usually inhabit palaces.">>
<div class="msg-box-autor">
She smiles, as though she’s just shared a harmless joke.
</div>
<<say "hero" "Haha, it's still just a home for now, not quite a palace.">>
<<say "hero" "Please, come in, make yourselves comfortable. $wifeName and I have just finished the final preparations.">>
<<say "hero" "We handled all the cleaning and cooking ourselves, so I can't vouch for the flavor—but I can certainly vouch for the effort.">>
<div class="msg-box-autor">
Jessica has already managed to snatch a wine glass from the table. She freezes for a heartbeat, then slowly shifts her gaze toward $wifeName.
</div>
<<say "wfriend" "Wait… $wifeName, are you serious?">>
<<say "wife" "Jess, I know exactly what you’re thinking, but now isn't the time.">>
<<say "wfriend" "Hold on... In a house this vast—you did the cleaning yourself!?">>
<div class="msg-box-autor">
There is a hint of feigned surprise in her voice, almost masquerading as concern.
</div>
<<say "wife" "Of course. We actually had fun with it. We did everything together.">>
<<say "wfriend" "Darling...">>
<div class="msg-box-autor">
Jessica offers a soft, patronizing smile and takes a sip of her wine.
</div>
<<say "wfriend" "Doing things 'together' is for deciding which silk gown to hang in your wardrobe next.">>
<<say "wfriend" "Remember one thing: Queens do not scrub floors.">>
<<say "wfriend" "They choose the color of the drapes.">>
<div class="msg-box-autor">
$wifeName lets out a soft, embarrassed laugh, but her smile becomes... unsettled.
</div>
<div class="msg-box-autor">
Meanwhile, Jessica turns back to you and gives a knowing wink.
</div>
<<say "wfriend" "$playerName, I trust you’ve already secured some domestic help.">>
<<say "wfriend" "Otherwise, poor $wifeName will turn into Cinderella before we’ve even finished this bottle.">>
<div class="msg-box-autor">
She glances lazily over at her husband.
</div>
<<say "wfriend" "Martin, take notes and learn. You've been getting far too comfortable lately.">>
<div class="msg-box-autor">
Martin forces an awkward smile and decides to ask $playerName how his vacation went.
</div>
<img src="data/images/act1/dinner.webp" class="scene-img" width="500">
<div class="msg-box-autor">
The atmosphere at the table shifts subtly.
</div>
<div class="msg-box-autor">
The very thing $wifeName was proud of just a minute ago—their shared labor, the cleaning, the cooking—suddenly feels… wrong.
</div>
<div class="msg-box-autor">
And Jessica sees it perfectly.
</div>
<div id="choice-area">
[[The dinner is drawing to its inevitable close.|Home_MeetJess_End]]
</div>
<</en>>
<</nobr>>\<<nobr>>\
<<set setup.charsDB["wfriend"].met = true>>
<<set setup.charsDB["friend"].met = true>>
<<run showNotification($lang === 'ru' ? "Новые данные добавлены в блокнот." : "New entries have been logged in the Journal")>>
<br>
<<ru>>
<div class="msg-box-autor">
Вечер подходит к концу. Пустые бутылки из-под дорогого вина и грязные тарелки — единственное, что осталось от идеального ужина.
$wifeName тут же начинает собирать посуду, стараясь быть полезной.
</div>
<<say "wfriend" "Дорогая, ты опять за своё? Оставь это. В таком доме посуда должна мыться сама собой... или чьими-то чужими руками."
>>
<div class="msg-box-autor">
Джессика бросает многозначительный взгляд на $playerName, накидывая на плечи свою курточку. $wifeName лишь виновато улыбается, продолжая греметь тарелками.
Вы выходите в холл, чтобы проводить гостей. В качестве жеста вежливости вы вручаете им небольшие подарки, купленные в дьюти-фри.
</div>
<div class="msg-box-autor">
Джессика, уже готовая уйти, внезапно замирает, глядя на свои туфли. На секунду кажется, что она что-то обдумывает.
</div>
<div class="msg-box-autor">Она медленно переводит взгляд на $playerName.
</div>
<<say "wfriend" "$playerName, милый, не мог бы ты мне помочь?"
>>
<<say "wfriend" "Застегни ремешки на туфлях. У меня в руках ваши подарки... в общем, мне совсем неудобно наклоняться."
>>
<div class="msg-box-autor">
В прихожей повисает тяжелая пауза. Мартин застывает с пакетами в руках. $wifeName замирает в дверях кухни, прижимая к себе грязную тарелку. Она явно удивилась, но почему-то не произнесла ни слова.
</div>
<<say "hero" "Застегнуть её туфли? Сейчас? Это звучит чертовски странно. Мартин стоит в двух шагах от неё — почему она не просит мужа?" "thought"
>>
<div class="msg-box-autor">
Джессика чуть выставляет ногу вперед, глядя на тебя с едва заметной, вызывающей улыбкой.
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
The evening is drawing to a close. Empty bottles of expensive wine and soiled plates are all that remain of the "ideal" dinner.
$wifeName immediately begins clearing the table, instinctively trying to be useful.
</div>
<<say "wfriend" "Darling, are you really at it again? Do leave it. In a house like this, the dishes should either wash themselves... or be washed by someone else's hands."
>>
<div class="msg-box-autor">
Jessica gives $playerName a meaningful look as she puts her jacket back on. $wifeName merely offers a guilt-ridden smile, the clatter of plates continuing in her wake.
You make your way to the foyer to see your guests out. As a gesture of hospitality, you hand them small gifts purchased at the duty-free.
</div>
<div class="msg-box-autor">
Jessica, poised to depart, suddenly freezes, her gaze lingering on her shoes. For a fleeting second, she seems to be weighing something in her mind.
</div>
<div class="msg-box-autor">
She slowly shifts her eyes to meet yours.
</div>
<<say "wfriend" "$playerName, dear, would you mind helping me out?"
>>
<<say "wfriend" "Could you do up these straps for me? My hands are full with your gifts... in short, it’s simply impossible for me to bend over."
>>
<div class="msg-box-autor">
A heavy silence hangs in the hallway. Martin stands motionless, clutching the bags. $wifeName pauses in the kitchen doorway, clutching a dirty plate to her chest. She is clearly taken aback, yet for some reason, she remains silent.
</div>
<<say "hero" "Fasten her shoes? Now? That's damn strange. Martin is standing right there—why on earth wouldn't she ask her own husband?" "thought"
>>
<div class="msg-box-autor">
Jessica extends her foot slightly, watching you with a faint, provocative smile.
</div>
<</en>>
<img src="data/images/act1/shoes.jpg" class="scene-img" width="300">
<div id="choice-area">
/* --- ВАРИАНТ 1: ПОМОЧЬ --- */
<<button `(State.variables.lang == "ru" ? "Помочь Джессике с туфлями" : "Help Jessica with her shoes")`>>
<<set $helpedJessicaShoes = true>>
<<set $mcSC -= 3>>
<<set $mcWillpower -= 3>>
<<set $wifeSuggestibility += 1>>
<<set $wfriendInfluence += 2>>
<<set $wfriendAudacity += 5>>
<<run $historyOfChoices.push({
ru: "Вы застегивали туфли Джессике.",
en: "You were fastening Jessica's shoes."
})>>
<<replace "#choice-area" t8n>>
<<ru>>
<<say "hero" "Конечно, Джессика. Мне не трудно помочь гостье.">>
<div class="msg-box-autor">Вы опускаетесь на одно колено. Джессика кладет руку вам на плечо для равновесия, и вы чувствуете едва заметную тяжесть ее руки.</div>
<div class="msg-box-autor">
Со стороны это выглядит так,
будто ты становишься перед ней на колени.
</div>
<<say "wfriend" "Какой джентльмен...">>
<div class="msg-box-autor">Похвалив вас, ее глаза медленно встречаются с глазами $wifeName и губы Джессики расплываются в победной улыбке. Она будто показывала подруге на своем примере как правильно быть женщиной.</div>
<div class="msg-box-autor">Попрощавшись, гости уходят, а наши герои, закончив убираться, отправляются в спальню готовиться ко сну.</div>
<</ru>>
<<en>>
<<say "hero" "Of course, Jessica. I don't mind assisting a guest.">>
<div class="msg-box-autor">
You drop to one knee. Jessica rests her hand on your shoulder for balance, and you feel the subtle, deliberate weight of her touch.
</div>
<div class="msg-box-autor">
To an outsider, it looks as though you are kneeling before her in a gesture of supplication.
</div>
<<say "wfriend" "Such a gentleman...">>
<div class="msg-box-autor">
Having praised you, her gaze slowly drifts to meet $wifeName's eyes, and Jessica's lips curl into a triumphant smile. It is as if she is demonstrating to her friend, by her own example, what it truly means to be a woman in control.
</div>
<div class="msg-box-autor">
After saying their goodbyes, the guests depart. Once the cleaning is finished, our protagonists head to the bedroom to prepare for sleep.
</div>
<</en>>
<<link `($lang == "ru" ? "Позже в спальне..." : "Later in the bedroom...")` "Home_AfterParty">>
<<nextPhase>>
<</link>>
<</replace>>
<</button>>
/* --- ВАРИАНТ 2: ОТКАЗАТЬ --- */
<<button `(State.variables.lang == "ru" ? "Посмотреть на Мартина" : "Look at Martin")`>>
<<set $mcSC += 4>>
<<set $mcWillpower += 2>>
<<set $friendHenpecked += 5>>
<<run $historyOfChoices.push({
ru: "Вы не помогли Джессике застегнуть туфли.",
en: "You did not help Jessica fasten her shoes."
})>>
<<replace "#choice-area" t8n>>
<<ru>>
<div class="msg-box-autor">Мартин быстро ловит твой взгляд, понимая намек, быстро ставит пакеты на пол и суетливо наклоняется к ногам Джессики. Она разочарованно выдыхает, не сводя с вас глаз.</div>
<<say "wfriend" "Ну надо же, какой ты... практичный, $playerName.">>
<div class="msg-box-autor">"Это даже веселее..." - вот что вы слышите в ее голосе и видите в ее взгляде, понимая, что эта просьба была не простой.</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
Martin quickly catches your look, takes the hint, and hastily drops the bags to the floor to stoop at Jessica's feet. She lets out a disappointed sigh, her eyes remaining locked on yours.
</div>
<<say "wfriend" "Well, look at that... how very practical of you, $playerName.">>
<div class="msg-box-autor">
"This is even more fun..." — that is what you hear in her voice and read in her gaze, realizing that her request was anything but simple.
</div>
<</en>>
<<link `($lang == "ru" ? "Позже в спальне..." : "Later in the bedroom...")` "Home_AfterParty">>
<<nextPhase>>
<</link>>
<</replace>>
<</button>>
</div>\
<</nobr>>\<<nobr>>\
<<ru>>
<div class="msg-box-autor">
После долгой уборки и бесконечного мытья посуды, вы наконец гасите свет во всем доме. В спальне царит уютная тишина, нарушаемая лишь шорохом одеяла. Вы с $wifeName ложитесь в кровать, и усталость приятно разливается по телу.
</div>
<div class="msg-box-autor">
Вы уже почти погружаетесь в сон, когда тишину прорезает негромкий голос жены.</div>
<<say "wife" "Ну и как тебе Джесс?"
>>
<div class="msg-box-autor">
Ты делаешь паузу, подбирая слова. В темноте спальни слова почему-то подбираются куда труднее, чем за столом. В голове всплывает образ женщины в курточке с расстегнутыми ремешками на туфлях и её вызывающий взгляд.</div>
<<say "hero" "Она... своеобразная. Но не выглядит плохим человеком."
>>
<<if $helpedJessicaShoes>>
<div class="msg-box-autor">$wifeName слегка поворачивается на бок, так что ты видишь в полумраке блеск её глаз. В её голосе слышна едва уловимая ирония, за которой скрывается укол ревности.</div>
<<say "wife" "Да, я заметила, что она тебе понравилась. Ты так... охотно бросился ей на помощь.">>
<div class="msg-box-autor"> Она замолкает, и ты чувствуешь, что этот момент запечатлелся в её памяти гораздо ярче, чем весь остальной ужин.</div>
<<else>>
<div class="msg-box-autor">$wifeName тяжело вздыхает и утыкается лбом в твое плечо. Ты чувствуешь, как она расслабляется, понимая, что ты на её стороне.</div>
<<say "wife" "Я тебя об этом предупреждала раньше..."
>>
<div class="msg-box-autor">Она замолкает, прогоняя сцену в прихожей раз за разом. Твой отказ Джессике стал для $wifeName важным подтверждением твоей верности и проницательности.</div>
<</if>>
<div class="msg-box-autor">$wifeName проводит пальцами по одеялу, словно собираясь с мыслями.</div>
<<say "wife" "Слушай... то, что Джесс сказала про уборку и весь дом... Ты думаешь, она права?
Нам действительно нужна домработница?">>
<div class="msg-box-autor">В темноте ты понимаешь,
что этот вопрос для неё куда важнее, чем кажется на первый взгляд.</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
After a long cleanup and endless dishwashing, you finally turn off the lights throughout the house. A cozy silence reigns in the bedroom, broken only by the rustle of the blanket. You and $wifeName get into bed, a pleasant exhaustion spreading through your body.
</div>
<div class="msg-box-autor">
You are almost drifting off to sleep when your wife's quiet voice cuts through the silence.
</div>
<<say "wife" "So, what did you think of Jess?">>
<div class="msg-box-autor">
You pause, choosing your words. In the darkness of the bedroom, words seem much harder to find than they did at the dinner table. An image of the woman in the jacket with her shoes unbuckled and her defiant gaze flashes through your mind.
</div>
<<say "hero" "She's... unique. But she doesn't seem like a bad person.">>
<<if $helpedJessicaShoes>>
<div class="msg-box-autor">$wifeName turns slightly on her side, so you can see the glint in her eyes in the dim light. There’s a faint irony in her voice, hiding a sting of jealousy.</div>
<<say "wife" "Yes, I noticed that you liked her. You were so... eager to jump to her aid.">>
<div class="msg-box-autor">She falls silent, and you feel that this moment has etched itself into her memory much more vividly than the rest of the dinner.</div>
<<else>>
<div class="msg-box-autor">$wifeName sighs heavily and rests her forehead against your shoulder. You feel her relax, knowing you're on her side.</div>
<<say "wife" "I warned you about her before...">>
<div class="msg-box-autor">She falls silent, replaying the scene in the hallway over and over. Your refusal to help Jessica has become an important confirmation of your loyalty and insight for $wifeName.</div>
<</if>>
<div class="msg-box-autor">$wifeName runs her fingers across the blanket as if gathering her thoughts.</div>
<<say "wife" "Listen... what Jess said about the cleaning and the whole house... Do you think she's right? Do we really need a housekeeper?">>
<div class="msg-box-autor">In the darkness, you realize this question is much more important to her than it might seem at first glance.</div>
<</en>>
<div id="choice-area">
<<button `(State.variables.lang == "ru" ? "Да, я думаю, Джесс была во всем права" : "Yes, I think Jess was right about everything")`>>
<<set $wifeLove -= 2>>
<<set $wfriendInfluence += 3>>
<<replace "#choice-area" t8n>>
<<ru>>
<<say "hero" "Да, я думаю, Джесс была во всём права. Мы можем позволить себе помощь по дому. Не обязательно делать всё самим.">>
<div class="msg-box-autor">$wifeName лишь молча кивает, но ты замечаешь, что её взгляд стал немного задумчивым. Кажется, твоё полное согласие с её подругой её немного задело.</div>
<</ru>>
<<en>>
<<say "hero" "Yes, I think Jess was right about everything. We really should delegate these tasks to a professional.">>
<div class="msg-box-autor">$wifeName just nods silently, but you notice her gaze becoming a bit pensive. It seems your complete agreement with her friend stung her a little.</div>
<</en>>
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "NightSex">>
<</link>>
<</replace>>
<</button>>
<<button `(State.variables.lang == "ru" ? "Да, я думаю, тебе нужна будет помощь по дому" : "Yes, I think you're going to need some help around the house")`>>
<<set $wifeLove += 2>>
<<set $wfriendInfluence -= 3>>
<<replace "#choice-area" t8n>>
<<ru>>
<<say "hero" "Да, я думаю, тебе действительно нужна помощь по дому. Ты и так много делаешь, не хочу, чтобы ты тратила всё время на уборку.">>
<div class="msg-box-autor">$wifeName благодарно улыбается и прижимается к твоему плечу. Ей явно приятно, что ты думаешь прежде всего о её комфорте, а не просто повторяешь слова Джессики.</div>
<</ru>>
<<en>>
<<say "hero" "Yes, I think you really do need some help around the house. You already do so much, I don't want you spending all your time cleaning.">>
<div class="msg-box-autor">$wifeName smiles gratefully and leans against your shoulder. She clearly appreciates that you're thinking of her comfort first, rather than just echoing Jessica's words.</div>
<</en>>
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "NightSex">>
<</link>>
<</replace>>
<</button>>
</div>
<</nobr>>\<<audio "bgm_ost" fadeout>>
<<nobr>>
<<ru>>
<div class="msg-box-autor">
$wifeName кивает, окончательно принимая решение, и поудобнее устраивается на подушке.
</div>
<<say "wife" "Хорошо, завтра я поспрашиваю знакомых и поищу объявления хороших домработниц. А теперь давай спать... Хорошенькие деньки закончились, начинаются рабочие будни. Нужно снова привыкать ложиться пораньше.">>
<div class="msg-box-autor">
Ты поворачиваешься к ней, и в полумраке комнаты твоя улыбка кажется особенно красноречивой.</div>
<<say "hero" "Да знаешь, если честно, я не так уж и спать хочу пока... Может, немного закрепим последние часы уходящего отпуска?">>
<div class="msg-box-autor">
С улыбкой и явным намеком в голосе спросил ты. $wifeName тихо смеется, и её рука скользит вниз по твоему прессу.</div>
<div class="msg-box-autor">
Она медленно достает член из твоих шортов.
От одного её прикосновения по телу пробегает знакомая волна тепла.
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
$wifeName nods, finally making up her mind, and settles more comfortably on her pillow.</div>
<<say "wife" "Alright, I'll ask around tomorrow and look for some good housekeeper ads. But for now, let's get some sleep... The good days are over, workdays are starting. We need to get used to going to bed early again.">>
<div class="msg-box-autor">
You turn toward her, and in the dim light of the room, your smile speaks volumes.
</div>
<<say "hero" "You know, to be honest, I'm not that sleepy yet... Maybe we should make the most of the final hours of our vacation?">>
<div class="msg-box-autor">
You asked with a smile and a clear hint in your voice. $wifeName laughs softly, her hand sliding down your abs.</div>
<div class="msg-box-autor">
She slowly pulls your member out of your shorts.
A familiar wave of warmth washes over your body at her very touch.
</div>
<</en>>
<video src="data/video/act1/nightsex_start.mp4"
class="scene-video"
controls
playsinline
autoplay
muted
loop>
</video>
<<ru>>
<div class="msg-box-autor">
Её пальцы действуют уверенно и нежно. Как только твоя плоть оказывается на свободе, $wifeName на мгновение замирает, любуясь результатом своих трудов.
</div>
<<say "wife" "Ммм... кажется, кто-то действительно не собирался спать. И мне это очень нравится.">>
<div class="msg-box-autor">
Она обхватывает твой член ладонью, медленно проводя по всей длине, а затем наклоняется ниже. Ты чувствуешь её горячее дыхание совсем близко, прежде чем её губы касаются самой головки.
</div>
<div class="msg-box-autor">
С тихим стоном она начинает медленно заглатывать тебя, двигая головой в такт своим мыслям, в то время как её свободная рука начинает ласкать твои яички.
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
Her fingers move with confidence and tenderness. As soon as your flesh is set free, $wifeName pauses for a moment, admiring the result of her handiwork.</div>
<<say "wife" "Mmm... it looks like someone really didn't plan on sleeping. And I like that. A lot.">>
<div class="msg-box-autor">
She wraps her palm around your shaft, slowly sliding it along the entire length before leaning down lower. You feel her hot breath close by just before her lips brush against the tip.</div>
<div class="msg-box-autor">
With a soft moan, she begins to take you in slowly, moving her head in rhythm with her thoughts, while her free hand begins to fondle your testicles.</div>
<</en>>
<video src="data/video/act1/nightsex_oral.mp4"
class="scene-video"
controls
playsinline
autoplay
muted
loop>
</video>
<<ru>>
<div class="msg-box-autor">
В какой-то момент ты мягко останавливаешь её, давая понять, что хочешь большего. $wifeName послушно отстраняется, её губы влажно блестят.</div>
<div class="msg-box-autor">
Ты опрокидываешь её на спину, и она широко раздвигает ноги, приглашая тебя войти. Устроившись между её бедер, ты чувствуешь, как она обвивает твои плечи руками, притягивая к себе для поцелуя.</div>
<<say "wife" "Да... Пожалуйста, милый... Я так этого ждала весь вечер.">>
<div class="msg-box-autor">
Ты медленно входишь в её уже влажную, тугую киску. Тихий стон наслаждения вырывается у неё из груди, когда ты начинаешь размеренные, глубокие толчки, заполняя её до самого предела.</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
At some point, you gently stop her, letting her know you want more. $wifeName obediently pulls away, her lips glistening wetly in the dim light of the bedroom.
</div>
<div class="msg-box-autor">
You push her onto her back, and she spreads her legs wide, inviting you to enter. Settling between her thighs, you feel her wrap her arms around your shoulders, pulling you in for a kiss.</div>
<<say "wife" "Yes... Please, honey... I've been waiting for this all evening.">>
<div class="msg-box-autor">
You slowly slide into her already wet, tight pussy. A soft moan of pleasure escapes her chest as you begin steady, deep thrusts, filling her to her very limit.</div>
<</en>>
<video src="data/video/act1/nightsex_missionary.mp4"
class="scene-video"
controls
playsinline
autoplay
muted
loop>
</video>
<<ru>>
<div class="msg-box-autor">
В какой-то момент $wifeName вдруг улыбается и упирается ладонями в твою грудь, заставляя тебя остановиться. Она тяжело дышит, её щеки горят румянцем, а в глазах пляшут озорные искорки.</div>
<div class="msg-box-autor">
Одним плавным движением она перекидывает ногу и оказывается верхом на тебе. Устроившись на твоих бедрах, она медленно выпрямляет спину, заставляя тебя войти в неё еще глубже.</div>
<<say "wife" "Теперь моя очередь... Я хочу чувствовать тебя каждой клеточкой, пока ты смотришь мне в глаза.">>
<div class="msg-box-autor">
Она начинает медленно двигаться, постепенно ускоряясь, пока не находит собственный ритм.</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
At some point, $wifeName suddenly smiles and presses her palms against your chest, forcing you to stop. She is breathing heavily, her cheeks flushed with a deep crimson, and playful sparks dance in her eyes.</div>
<div class="msg-box-autor">
In one smooth motion, she swings a leg over and straddles you. Settling on your hips, she slowly straightens her back, making you slide even deeper inside her.
</div>
<<say "wife" "Now it's my turn... I want to feel you with every cell of my body while you look into my eyes.">>
<div class="msg-box-autor">
She begins to move slowly, gradually accelerating until she finds her own rhythm.</div>
<</en>>
<video src="data/video/act1/nightsex_cowgirl.mp4"
class="scene-video"
controls
playsinline
autoplay
muted
loop>
</video>
<<ru>>
<div class="msg-box-autor">
Темп становится неистовым. $wifeName выгибает спину, закидывая голову назад, и её стоны сливаются с твоим тяжелым дыханием. Ты чувствуешь, как внутри неё всё сжимается в сладких спазмах, и больше не можешь сдерживаться.</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
The pace becomes frantic. $wifeName arches her back, throwing her head back, her moans merging with your heavy breathing. You feel everything inside her tighten in sweet spasms, and you can no longer hold back.</div>
<</en>>
<video src="data/video/act1/nightsex_cum.mp4"
class="scene-video"
controls
playsinline
autoplay
muted
loop>
</video>
<<ru>>
<div class="msg-box-autor">
Крепко обхватив её за бедра, ты толкаешься в последний раз, наполняя её горячим семенем до самых краев. Она прижимается к тебе, дрожа всем телом, пока вы оба медленно приходите в себя.</div>
<div class="msg-box-autor">
Через некоторое время вы обессиленно опускаетесь на подушки. $wifeName нежно прижимается к твоему боку, кладя голову тебе на грудь, а ты укрываешь вас обоих одеялом.</div>
<<say "wife" "Я так сильно люблю тебя... Ты лучший муж в мире.">>
<div class="msg-box-autor">
"И я тебя люблю," — шепчешь ты в ответ. В полумраке спальни, под мерное биение сердец, вы постепенно погружаетесь в глубокий, спокойный сон.</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
Gripping her hips firmly, you give one last thrust, filling her to the brim with your hot seed. She clings to you, her whole body trembling, as you both slowly catch your breath.</div>
<div class="msg-box-autor">
After a while, you sink exhausted onto the pillows. $wifeName snuggles tenderly against your side, resting her head on your chest, while you pull the blanket over both of you.</div>
<<say "wife" "I love you so much... You're the best husband in the world.">>
<div class="msg-box-autor">
"I love you too," you whisper back. In the dim light of the bedroom, to the steady rhythm of your hearts, you gradually drift into a deep, peaceful sleep.</div>
<</en>>
<div id="choice-area">
<<link `($lang == "ru" ? "На следующее утро" : "The Next Morning")` "PreworkMorning">>
<<nextPhase>>
<</link>>
</div>
<</nobr>><<nobr>>
<<ru>>
<div class="msg-box-autor">
Солнечные лучи пробиваются сквозь шторы, возвещая о начале первой рабочей недели после отпуска. В воздухе уже витает бодрящий аромат свежесваренного кофе.</div>
<div class="msg-box-autor">
Ты заходишь на кухню и видишь $wifeName. Она уже одета в легкую домашнюю рубашку, её волосы аккуратно собраны, а на столе тебя ждет завтрак.</div>
<img src="data/images/act1/breakfast.webp" class="scene-img" width="700">
<<say "wife" "Доброе утро, соня! Я решила встать пораньше, чтобы мы успели спокойно позавтракать до того, как начнется вся эта суета. Как спалось?">>
<<say "hero" "После такой ночи... удивительно хорошо. Но признаю, мысль о офисе сегодня кажется преступлением.">>
<div class="msg-box-autor">
Она мягко смеется, подвигая к тебе чашку кофе и садится напротив тебя. Её взгляд теплеет, напоминая о вчерашнем признании в любви, но она тут же возвращается к делам.</div>
<<say "wife" "Не забудь, сегодня нам нужно серьезно заняться поиском домработницы. Я уже присмотрела пару агентств. Надеюсь, нам попадётся кто-нибудь надёжный. Но это вечером... а сейчас — пей кофе, а то опоздаешь!">>
<</ru>>
<<en>>
<div class="msg-box-autor">
Sunlight filters through the curtains, heralding the start of the first work week after vacation. The invigorating aroma of freshly brewed coffee is already in the air.</div>
<div class="msg-box-autor">
You enter the kitchen and see $wifeName. She is already dressed in a light housecoat, her hair is neatly tied, and breakfast is waiting for you on the table.
</div>
<img src="data/images/act1/breakfast.webp" class="scene-img" width="700">
<<say "wife" "Good morning, sleepyhead! I decided to get up early so we could have breakfast in peace before all the rush starts. How did you sleep?">>
<<say "hero" "After a night like that... surprisingly well. But I admit, the thought of the office today feels like a crime.">>
<div class="msg-box-autor">
She laughs softly, sliding a cup of coffee toward you and taking a seat opposite you. Her gaze softens, reminding you of last night's profession of love, but she quickly returns to the business at hand.
</div>
<<say "wife" "Don't forget, we need to get serious about finding a housekeeper today. I've already looked into a couple of agencies. I hope we find someone reliable. But that’s for tonight... for now, drink your coffee, or you'll be late!">>
<</en>>
<div id="choice-area">
<<link `($lang == "ru" ? "Закончить завтрак и отправиться в офис" : "Finish breakfast and head to the office")` "FirstTimeOffice">>
<</link>>
</div>
<</nobr>><<audio "bgm_chill" volume 0 fadein loop>>\
<<nobr>>\
<<ru>>
<div class="msg-box-autor">
Две недели отпуска пролетели как один миг. Стеклянные двери офиса разъезжаются, пропуская тебя внутрь. Проходя через отделы, ты кожей чувствуешь, как разделилось мнение коллектива.
</div>
<div class="msg-box-autor">
Одни искренне улыбаются и кивают в знак приветствия — они ценят твой более человечный подход после тирании предыдущего босса. Но другие провожают тебя тяжелыми взглядами, шепчась за спиной. Кто-то резко замолкает, когда ты проходишь мимо... Для них ты — выскочка, укравший кресло у их "истинного лидера".
</div>
<div class="msg-box-autor">
В финансовом отделе ты встречаешь Грейс. Она выглядит уставшей, но её лицо мгновенно светлеет, когда она замечает тебя.
</div>
<img src="data/images/act1/meetgrace.webp" class="scene-img" width="400">
<<say "fin" "$playerName! С возвращением. Офис без тебя казался каким-то... холодным. Надеюсь, ты набрался сил за время отпуска.">>
<<say "hero" "Спасибо, Грейс. Да, сил вагон, но что-то мне подсказывает, что я растрачу их уже к обеду. Рад тебя видеть.">>
<div class="msg-box-autor">
Ты направляешься к лифту, ведущему в блок руководства. Проходя мимо стола своей секретарши Хлои, ты невольно замедляешь шаг. Стол пуст. Компьютер выключен. Нет ни её сумочки, ни даже сменных туфель, которые она всегда держала под столом.
Хлои нет на месте. Раньше она никогда не приходила позже тебя.
</div>
<div class="msg-box-autor">
Зайдя в свой кабинет, ты сразу снимаешь трубку и набираешь Грейс.
</div>
<<say "hero" "Грейс, это снова я. Ты не видела сегодня Хлою? Её стол пустой." "phone">>
<<say "fin" "Хлою? Нет, $playerName. Ты же знаешь, я редко поднимаюсь в вашу часть здания без вызова. Может, она приболела?" "phone">>
<div class="msg-box-autor">
Чувствуя легкое беспокойство, ты вызываешь в кабинет двух опытных айтишников, в которых уверен — Марка и Стива. Когда они входят, ты сразу переходишь к делу.
</div>
<<say "hero" "Парни, где Хлоя? Она отпрашивалась у кого-то или передавала ключи?">>
<div class="msg-box-autor">
По их лицам пробегает тень испуга. Они переглядываются, словно решая, кто будет говорить.
</div>
<<say "worker1" "Э-э... нет, босс. На сегодня она ни у кого не отпрашивалась. Мы думали, она предупреждала конкретно ВАС, что сегодня не придет.">>
<<say "worker2" "Да её и во время вашего отпуска частенько не было на месте...">>
<div class="msg-box-autor">
Выпаливает второй, но тут же получает чувствительный толчок локтем от коллеги.
</div>
<div class="msg-box-autor">
Он мгновенно замолкает, уставившись в пол. Странная нервозность этих двоих вызывает у тебя неприятный холодок.
</div>
<<say "hero" "Ясно. Можете идти. Расспрошу ее лично, когда она придет.">>
<<say "hero" "Это выглядело очень странно. Что-то явно поменялось за время моего отсутствия... или кто-то приложил руку к этим переменам." "thought">>
<div class="msg-box-autor">
Прошло несколько часов. Стопка документов на столе только растет, словно кто-то подбрасывает новые папки, пока ты отворачиваешься. Графики транзакций расползаются перед глазами, но мысли снова и снова возвращаются к пустующему столу в приемной.
</div>
<<say "hero" "Черт возьми, где же Хлоя? Сейчас она как никогда нужна, чтобы помочь во всем этом хаосе." "thought">>
<div class="msg-box-autor">
Время подходит к обеду. Решив, что поездка домой займет слишком много времени, ты направляешься в соседнее кафе. Это любимое место сотрудников офиса.
Если за последние недели здесь и обсуждали что-то интересное — Лили наверняка это слышала.
</div>
<img src="data/location/cafe.webp" class="scene-img" width="400">
<div class="msg-box-autor">
У входа тебя встречает Лили — улыбчивая официантка, которая знает предпочтения половины твоего офиса.
</div>
<<say "lily" "О, $playerName! Я рада, что ты наконец вернулся. Надеюсь, теперь ты будешь заглядывать почаще, раз работаешь тут рядом. Тебе как обычно?">>
<div class="msg-box-autor">
Ты киваешь и, пока она накрывает на стол, между делом расспрашиваешь её о новостях. Лили охотно делится наблюдениями.
</div>
<div class="msg-box-autor">
Она наклоняется чуть ближе, словно собирается рассказать маленький секрет.
</div>
<<say "lily" "Знаешь, за те две недели, что тебя не было, тут всё изменилось. Раньше твои ребята сидели по одному-два человека, уткнувшись в телефоны. А теперь... посмотри на них. Сдружились. Смеются. И знаешь, чьё имя я слышу за каждым вторым столиком?">>
<<say "lily" "Хлоя. Все только и говорят о том, какая она красавица и как потрясающе управлялась со всеми делами в офисе, пока руководство было в отъезде. Она тут теперь как местная героиня. Некоторые даже шутят, что без неё офис развалился бы за пару дней.">>
<<say "hero" "Интересно… За две недели коллеги стали одной большой семьей и хором восхищаются Хлоей.
Похоже, пока меня не было, кто-то очень умело занял мое место в центре внимания." "thought">>
<<say "lily" "Кстати… она иногда заходила сюда во время твоего отпуска.
Обычно с кем-то из офиса, а пару раз с какими-то серьёзным дядькой в костюме.">>
<<say "hero" "Понятно. Спасибо Лили, это было очень наблюдательно с твоей стороны. И да, обещаю заходить почаще.">>
<div class="msg-box-autor">
Закончив обед, ты возвращаешься в офис. Остаток дня проходит в рутине: звонки, короткие обсуждения с Грейс, дежурные приветствия коллег. Хлоя так и не появилась, и её телефон по-прежнему вне зоны доступа.
</div>
<div class="msg-box-autor">
Когда солнце начинает клониться к закату, ты собираешь вещи. На сегодня вопросов накопилось слишком много... но ни на один из них у тебя пока нет ответа.
Пора домой — там ждет $wifeName и предстоящий поиск домработницы.
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
The two-week vacation flew by in a heartbeat. The office glass doors slide open, letting you in. Walking through the departments, you can feel the team's divided loyalty right under your skin.
</div>
<div class="msg-box-autor">
Some smile sincerely and nod in greeting — they appreciate your more human approach after the previous boss's tyranny. But others follow you with heavy stares, whispering behind your back. Conversations abruptly stop as you pass by... To them, you're an upstart who stole the seat from their "true leader."
</div>
<div class="msg-box-autor">
In the finance department, you run into Grace. She looks exhausted, but her face brightens the moment she spots you.
</div>
<img src="data/images/act1/meetgrace.webp" class="scene-img" width="400">
<<say "fin" "$playerName! Welcome back. The office felt... cold without you. I hope you've recharged your batteries during the break.">>
<<say "hero" "Thanks, Grace. Yeah, I’ve got plenty of energy, but something tells me I'll burn through it all by lunch. Good to see you.">>
<div class="msg-box-autor">
You head toward the elevator leading to the executive suite. Passing by Chloe's desk, your secretary, you instinctively slow your pace. The desk is empty. The computer is off. There’s no sign of her purse, or even the spare shoes she always kept under the desk.
Chloe is nowhere to be found. She had never arrived later than you before.
</div>
<div class="msg-box-autor">
After entering your office, you immediately pick up the phone and dial Grace.
</div>
<<say "hero" "Grace, it's me again. Have you seen Chloe today? Her desk is empty." "phone">>
<<say "fin" "Chloe? No, $playerName. You know I rarely head up to your wing without a specific request. Maybe she's out sick?" "phone">>
<div class="msg-box-autor">
Feeling a slight unease, you call two experienced IT specialists you trust — Mark and Steve — into your office. As they walk in, you get straight to the point.
</div>
<<say "hero" "Guys, where's Chloe? Did she ask anyone for time off or hand over her keys?">>
<div class="msg-box-autor">
A shadow of fear flickers across their faces. They exchange glances, as if deciding who should speak first.
</div>
<<say "worker1" "Uh... no, boss. She didn't ask anyone for leave today. We thought she had warned YOU specifically that she wouldn't be coming in.">>
<<say "worker2" "Actually, she was away from her desk quite often during your vacation too...">>
<div class="msg-box-autor">
The second one blurts it out, only to be cut off by a sharp nudge from his colleague's elbow.
</div>
<div class="msg-box-autor">
He falls silent instantly, staring at the floor. The strange nervousness of these two sends an unpleasant chill down your spine.
</div>
<<say "hero" "I see. You can go. I'll ask her personally when she shows up.">>
<<say "hero" "That looked very strange. Something clearly changed during my absence... or someone had a hand in these changes." "thought">>
<div class="msg-box-autor">
A few hours have passed. The stack of documents on your desk only seems to grow, as if someone is slipping in new folders every time you look away. Transaction charts blur before your eyes, but your thoughts keep drifting back to the empty desk in the reception area.
</div>
<<say "hero" "Damn it, where is Chloe? I need her now more than ever to help navigate this chaos." "thought">>
<div class="msg-box-autor">
Lunchtime approaches. Deciding that the drive home would take too much time, you head to the cafe next door. It's a favorite haunt for the office staff.
If anything interesting was discussed here over the past few weeks, Lily most likely heard it.
</div>
<img src="data/location/cafe.webp" class="scene-img">
<div class="msg-box-autor">
At the entrance, you are greeted by Lily — a cheerful waitress who knows the preferences of half your office.
</div>
<<say "lily" "Oh, $playerName! I'm so glad you're finally back. I hope you'll be dropping by more often now that you're working nearby. The usual for you?">>
<div class="msg-box-autor">
You nod and, while she sets the table, you casually ask her about the news. Lily is more than happy to share her observations.
</div>
<div class="msg-box-autor">
She leans in a bit closer, as if she's about to share a little secret.
</div>
<<say "lily" "You know, during the two weeks you were away, everything changed. Your people used to sit alone or in pairs, buried in their phones. But now... look at them. They've bonded. They're laughing. And do you know whose name I hear at every other table?">>
<<say "lily" "Chloe. Everyone is talking about how beautiful she is and how brilliantly she handled everything at the office while the management was away. She's like a local hero now. Some even joke that without her, the office would have fallen apart in a couple of days.">>
<<say "hero" "Interesting... In just two weeks, my colleagues have become one big happy family and are singing Chloe's praises in unison.
It seems while I was gone, someone very skillfully took my place in the spotlight." "thought">>
<<say "lily" "By the way... she dropped in here a few times during your vacation.
Usually with someone from the office, but a couple of times it was with some serious-looking guy in a suit.">>
<<say "hero" "I see. Thanks, Lily, that was very observant of you. And yes, I promise to drop by more often.">>
<div class="msg-box-autor">
After finishing lunch, you return to the office. The rest of the day passes in routine: calls, brief discussions with Grace, and casual nods to colleagues. Chloe never showed up, and her phone remains unreachable.
</div>
<div class="msg-box-autor">
As the sun begins to set, you pack your things. Too many questions have piled up today... but you don't have an answer for a single one yet.
Time to go home — $wifeName is waiting, and so is the search for a new housekeeper.
</div>
<</en>>
<div id="choice-area">
<<link `($lang == "ru" ? "Вы отправляетесь домой" : "You head home")` "EveningAfterOffice">>
<<nextPhase>>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<<set setup.charsDB["fin"].met = true>>
<<run showNotification($lang === 'ru' ? "Новые данные добавлены в блокнот." : "New entries have been logged in the Journal")>>
<br>
<<ru>>
<div class="msg-box-autor">
Тихо повернув ключ в замке, ты входишь в дом. После напряженного дня в офисе тишина кажется почти нереальной. Из гостиной доносится мерное постукивание по клавишам. $wifeName устроилась на диване, окруженная распечатками и открытыми вкладками браузера, несколько листов лежат прямо на полу у её ног. Она выглядит сосредоточенной, но, заметив тебя, расплывается в улыбке.
</div>
<img src="data/images/act1/search.webp" class="scene-img" width="700">
<div class="msg-box-autor">
Ты подходишь сзади и мягко целуешь её в макушку. Она откидывается на спинку дивана, потягиваясь.
</div>
<<say "wife" "С возвращением, дорогой! Как прошел твой первый день в 'родных пенатах'? Офис всё еще стоит на месте?">>
<div class="msg-box-autor">
Ты вкратце пересказываешь события дня: пустой стол Хлои, странную нервозность айтишников и слухи из кафе. Лицо $wifeName становится серьезным.
</div>
<<say "wife" "Подожди... Хлоя просто не вышла и не предупредила? Это на неё совсем не похоже. Тебе нужно завтра серьезно с ней поговорить. Такое отношение к боссу неприемлемо, особенно после того, как ты выбил ей прибавку в прошлом квартале.">>
<<say "hero" "Согласен. Если она появится, разговор будет длинным. А как твои успехи? Нашла ту самую, на которую можно будет рассчитывать в доме?">>
<div class="msg-box-autor">
$wifeName со вздохом разворачивает ноутбук к тебе. Список просмотренных анкет перевалил за пятьдесят.
</div>
<<say "wife" "Наш город слишком маленький, $playerName. Никто не хочет переезжать сюда из мегаполисов ради работы по дому, а местные все либо заняты, либо... ну, ты сам видел тех кандидаток. Я обзвонила всех, даже Джессику спрашивала. Глухо.">>
<<say "hero" "Передохни на сегодня. Утро вечера мудренее. Давай поужинаем и забудем о делах хоть на пару часов.">>
<div class="msg-box-autor">
Вы ужинаете, обсуждая мелочи дня. Постепенно разговоры стихают, и усталость берет свое.
Позже, уже в постели, ты ещё долго лежишь с открытыми глазами, вспоминая пустой стол Хлои, прокручивая в голове завтрашний разговор в офисе. Вскоре глаза закрываются и ты засыпаешь.
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
Quietly turning the key in the lock, you enter the house. After a stressful day at the office, the silence feels almost surreal. From the living room, you hear the steady rhythmic clicking of keys. $wifeName is nestled on the sofa, surrounded by printouts and open browser tabs, with several sheets scattered on the floor at her feet. She looks focused, but upon noticing you, her face breaks into a smile.
</div>
<div class="msg-box-autor">
You walk up behind her and gently kiss the top of her head. She leans back against the sofa, stretching.
</div>
<<say "wife" "Welcome back, honey! How was your first day back in the 'lions' den'? Is the office still standing?">>
<div class="msg-box-autor">
You briefly recount the day's events: Chloe's empty desk, the strange nervousness of the IT guys, and the rumors from the cafe. $wifeName's expression turns serious.
</div>
<<say "wife" "Wait... Chloe just didn't show up and didn't warn anyone? That doesn't sound like her at all. You need to have a serious talk with her tomorrow. That kind of attitude toward the boss is unacceptable, especially after you fought for her raise last quarter.">>
<<say "hero" "I agree. If she shows up, the conversation will be a long one. How about your progress? Did you find 'the one' we can count on around the house?">>
<div class="msg-box-autor">
With a sigh, $wifeName turns the laptop toward you. The list of reviewed profiles has surpassed fifty.
</div>
<<say "wife" "Our town is too small, $playerName. No one wants to move here from the big cities for domestic work, and the locals are either already hired or... well, you saw those candidates yourself. I called everyone, even asked Jessica. Nothing.">>
<<say "hero" "Take a break for tonight. Let's sleep on it. Let's have dinner and forget about work for at least a couple of hours.">>
<div class="msg-box-autor">
You have dinner, discussing the little things of the day. Gradually, the conversation dies down as exhaustion takes its toll.
Later, already in bed, you lie with your eyes open for a long time, remembering Chloe's empty desk and rehearsing tomorrow's conversation at the office in your head. Soon your eyes drift shut, and you fall asleep.
</div>
<</en>>
<div id="choice-area">
<<link `($lang == "ru" ? "На следующий день в офисе" : "Next day at the office")` "SecondOfficeDay">>
<<skipToMorning>>
<</link>>
</div>
<</nobr>>\<<nobr>>
<<ru>>
<div class="msg-box-autor">
Утро в офисе начинается с привычного гула кофемашин и шелеста бумаг. Несколько сотрудников бросают быстрые взгляды в сторону приемной. Ты решительно направляешься к своему кабинету, но замираешь, едва дойдя до него.
Она здесь. Спокойная.
Уверенная.
Как обычно хорошо одетая.
</div>
<div class="msg-box-autor">
Виновница вчерашних слухов и твоего испорченного рабочего дня сидит за своим столом, как ни в чем не бывало, поправляя идеальную укладку и проверяя что-то в телефоне. Заметив тебя, она расплывается в легкой, почти официальной улыбке.
</div>
<<say "sec" "Здравствуйте, мистер $playerName. Рада вас видеть." >>
<div class="msg-box-autor">
Её тон спокойный, будничный, будто вчерашнего отсутствия и не было. Сухо поздоровавшись, ты проходишь в кабинет и через минуту вызываешь её по внутренней связи — этот разговор должен пройти без лишних глаз.
</div>
<div class="msg-box-autor">
Хлоя входит, покачивая бедрами, будто совершенно понимая, чем закончится этот разговор. В её глазах пляшут игривые искорки. Ни капли угрызений совести, ни тени вины.
Она грациозно поправляет юбку и замирает напротив твоего стола.
</div>
<img src="data/images/act1/meetchloe.webp" class="scene-img" width="400">
<<say "sec" "Вы хотели меня видеть, босс? Нужно помочь с документами или, может быть, принести вам кофе? Особо крепкий, чтобы взбодриться после вчерашнего?">>
<<say "hero" "Кофе не нужен. Вчера мне пришлось сделать всё самому, и именно об этом я хотел поговорить. Хлоя, где ты была весь вчерашний день?">>
<div class="msg-box-autor">
Она на мгновение отводит взгляд в сторону окна, словно подбирая слова или придумывая оправдание прямо на ходу. Затем снова смотрит на тебя, и её голос становится чуть мягче, с фальшивыми нотками беспокойства.
</div>
<<say "sec" "Ох, мистер $playerName... Простите, случилась беда. Моя бабушка из пригородной деревни сильно заболела, мне пришлось срочно ехать к ней, врач сказал, что лучше привезти её в город.">>
<div class="msg-box-autor">
Она слегка прикусывает губу.
</div>
<<say "sec" "И знаете, там совершенно нет связи, глухомань. Я увидела ваши пропущенные только ближе к ночи, когда мы вернулись. Но звонить вам в такое время... я посчитала это неуместным.">>
<div class="msg-box-autor">
Она смотрит на тебя чуть дольше, чем нужно, словно проверяя — поверишь ли ты.
</div>
<<say "hero" "Странно. За всё время работы она ни разу не говорила о бабушке.
И почему-то я уверен — сейчас она просто смотрит, поверю ли я." "thought">>
<<say "hero" "Бабушка? Это благородно. Но вот что странно: ребята из IT обмолвились, что тебя частенько не было на месте и в течение последних двух недель. У неё затяжной кризис или ты просто решила, что офис — это база отдыха, пока босса нет?">>
<div class="msg-box-autor">
На мгновение её маска идеальной помощницы дает трещину. Глаза Хлои сужаются, а пальцы, сжимавшие край юбки, расслабляются. Она издает короткий, почти издевательский смешок.
</div>
<<say "sec" "Ох, эти «ребята»... Мистер $playerName, вы же знаете, как мужчины любят преувеличивать. Я действительно отлучалась, но исключительно по рабочим вопросам. Нужно было забрать документы у нотариуса, заглянуть в архив старого корпуса…
Ну и, признаюсь, один-два обеда немного затянулись.
Вы ведь не станете устраивать допрос из-за пары пропущенных часов?">>
<div class="msg-box-autor">
Она делает шаг ближе к столу, опираясь на него руками. Теперь в её позе нет и тени робкости.
</div>
<<say "sec" "Кстати... а кто именно из наших «доблестных рыцарей клавиатуры» так пристально следил за моим графиком? Мне просто интересно, кто у нас в офисе такой... бдительный.">>
<<say "hero" "Марк и Стив. Они заходили вчера, когда я пытался тебя найти.">>
<div class="msg-box-autor">
Хлоя выпрямляется. На её губах играет странная, холодная улыбка, от которой по спине пробегает холодок. Она поправляет выбившийся локон и произносит почти шепотом, словно обращаясь к самой себе:
</div>
<<say "sec" "Хм... Марк и Стив. Понятно. Думаю, им стоит напомнить, что лишняя наблюдательность иногда плохо заканчивается.">>
<<say "hero" "Что ты сказала?">>
<<say "sec" "Ничего, босс. Просто мысли вслух. Я могу уже наконец идти? Работа сама себя не сделает, особенно после моего «прогула»." >>
<<say "hero" "Вся эта история звучит очень странно, и скорее всего выдуманно. Может стоит немного сильнее контролировать моих сотрудников, включая Хлою, и сделать ей выговор прямо сейчас, чтобы другие тоже понимали как делать не нужно?
С другой стороны я работаю в этом офисе не так давно и раздавать выговоры направо и налево, только устроившись... может сложиться неправильное впечатление обо мне. Я же не какой то босс-тиран. Как мне поступить?" "thought">>
<</ru>>
<<en>>
<div class="msg-box-autor">
Morning in the office begins with the familiar hum of coffee machines and the rustle of papers. Several employees steal quick glances toward the reception area. You head resolutely toward your office but freeze just before reaching it.
She's here. Calm.
Confident.
As well-dressed as always.
</div>
<div class="msg-box-autor">
The culprit of yesterday's rumors and your ruined workday is sitting at her desk as if nothing had happened, fixing her perfect hair and checking something on her phone. When she notices you, she gives you a slight, almost formal smile.
</div>
<<say "sec" "Hello, Mr. $playerName. Good to see you.">>
<div class="msg-box-autor">
Her tone is calm and casual, as if yesterday's absence never occurred. After a curt greeting, you head into your office and call her via the intercom a minute later — this conversation needs to happen behind closed doors.
</div>
<div class="msg-box-autor">
Chloe walks in with a sway in her hips, as if she perfectly understands how this conversation will end. A mischievous glint dances in her eyes. Not a hint of remorse, not a shadow of guilt.
She gracefully adjusts her skirt and comes to a halt in front of your desk.
</div>
<img src="data/images/act1/meetchloe.webp" class="scene-img" width="400">
<<say "sec" "Did you want to see me, boss? Do you need help with the paperwork, or perhaps I could get you some coffee? Extra strong, to wake you up after yesterday?">>
<<say "hero" "I don't need coffee. I had to do everything myself yesterday, and that's exactly what I wanted to talk about. Chloe, where were you all day yesterday?">>
<div class="msg-box-autor">
She briefly glances toward the window, as if searching for words or making up an excuse on the fly. Then she looks back at you, her voice softening with a touch of fake concern.
</div>
<<say "sec" "Oh, Mr. $playerName... I'm so sorry, there was an emergency. My grandmother from a nearby village got very sick. I had to rush there; the doctor said it was best to bring her to the city.">>
<div class="msg-box-autor">
She slightly bites her lip.
</div>
<<say "sec" "And you know, there's absolutely no signal there, it's the middle of nowhere. I only saw your missed calls late at night when we got back. But calling you at that hour... I thought it would be inappropriate.">>
<div class="msg-box-autor">
She looks at you a bit longer than necessary, as if testing to see if you'll buy it.
</div>
<<say "hero" "Strange. In all the time she's worked here, she's never mentioned a grandmother.
And for some reason, I’m certain — she’s just watching right now to see if I’ll believe her." "thought">>
<<say "hero" "Grandmother? That's noble. But here's what’s strange: the IT guys mentioned you were often away from your desk over the last two weeks as well. Did she have a prolonged crisis, or did you just decide that the office was a vacation spot while the boss was away?">>
<div class="msg-box-autor">
For a split second, her mask of the perfect assistant cracks. Chloe's eyes narrow, and the fingers gripping the edge of her skirt relax. She lets out a short, almost mocking chuckle.
</div>
<<say "sec" "Oh, those 'guys'... Mr. $playerName, you know how men love to exaggerate. I did step out, but strictly for business. I had to pick up documents from the notary, check the archives in the old wing...
And, I admit, one or two lunches ran a bit long.
Surely you aren't going to hold an interrogation over a couple of missed hours?">>
<div class="msg-box-autor">
She takes a step closer to the desk, leaning on it with her hands. Now, there isn't a shadow of shyness in her posture.
</div>
<<say "sec" "By the way... which of our 'gallant knights of the keyboard' was tracking my schedule so closely? I'm just curious who in this office is so... vigilant.">>
<<say "hero" "Mark and Steve. They stopped by yesterday when I was trying to find you.">>
<div class="msg-box-autor">
Chloe straightens up. A strange, cold smile plays on her lips, sending a shiver down your spine. She brushes back a stray lock of hair and speaks almost in a whisper, as if to herself:
</div>
<<say "sec" "Hmm... Mark and Steve. I see. I think they need to be reminded that being too observant sometimes ends badly.">>
<<say "hero" "What did you say?">>
<<say "sec" "Nothing, boss. Just thinking out loud. May I finally go now? The work won't do itself, especially after my 'absence'.">>
<<say "hero" "This whole story sounds very strange, and most likely made up. Maybe I should exercise more control over my employees, including Chloe, and give her a formal reprimand right now so others understand what not to do?
On the other hand, I haven't been in this office that long, and handing out reprimands left and right just after starting... it might create the wrong impression of me. I'm not some tyrant boss. What should I do?" "thought">>
<</en>>
<div id="choice-area">
/* --- ВАРИАНТ 1: ПРЕДУПРЕДИТЬ --- */
<<button `(State.variables.lang == "ru" ? "Отпустить с предупреждением" : "Let her go with a warning")`>>
<<set $chloeForgiven = true>>
<<set $mcSC -= 2>>
<<set $secAudacity += 5>>
<<run $historyOfChoices.push({
ru: "Вы спустили с рук прогул Хлои.",
en: "You let Chloe get away with skipping work"
})>>
<<replace "#choice-area" t8n>>
<<ru>>
<<say "hero" "Ладно, Хлоя. Я не собираюсь начинать свою первую неделю после отпуска со скандалов и штрафов. Считай это устным предупреждением. Но чтобы это было в последний раз — в следующий раз никакие бабушки не спасут тебя от официального взыскания. Мы договорились?">>
<<say "sec" "Конечно, мистер $playerName. Вы такой... разумный человек. Я была почти уверена, что вы не станете принимать поспешных решений.">>
<div class="msg-box-autor">На лице Хлои расцветает та самая улыбка, которую ты так опасался увидеть — торжествующая, мягкая и пугающе понимающая. Она будто знала заранее, что ты не решишься на жесткие меры.</div>
<<say "sec" "Не переживайте. Я обязательно <b>постараюсь</b> быть на месте... когда вам это будет нужно.">>
<div class="msg-box-autor">
Она слегка склоняет голову набок, бросая на тебя кокетливый взгляд, а затем разворачивается и направляется к выходу. У самой двери она на секунду замирает, бросает короткий взгляд через плечо и, не говоря ни слова, выходит, плотно закрыв за собой дверь. Ты слышишь её легкие шаги в приемной и понимаешь — она вышла победителем из этой дуэли.
</div>
<<say "hero" "Черт... почему у меня ощущение, что я только что сделал именно то, чего она от меня ждала?" "thought">>
<</ru>>
<<en>>
<<say "hero" "Alright, Chloe. I’m not going to start my first week back with scandals and fines. Consider this a verbal warning. But let this be the last time — next time, no amount of grandmothers will save you from a formal reprimand. Do we have an understanding?">>
<<say "sec" "Of course, Mr. $playerName. You're such... a reasonable man. I was fairly certain you wouldn't make any hasty decisions.">>
<div class="msg-box-autor">
A smile blooms on Chloe's face, the very one you feared seeing — triumphant, soft, and disturbingly knowing. It’s as if she knew all along that you wouldn't resort to harsh measures.
</div>
<<say "sec" "Don't worry. I'll <b>make sure</b> to be around... whenever you need me.">>
<div class="msg-box-autor">
She tilts her head slightly, giving you a flirty glance, then turns and heads for the exit. At the door, she pauses for a second, steals a quick look over her shoulder, and leaves without a word, closing the door firmly behind her. You hear her light footsteps in the reception area and realize — she walked away the winner of this duel.
</div>
<<say "hero" "Damn... why do I feel like I just did exactly what she expected me to do?" "thought">>
<</en>>
<<link `($lang == "ru" ? "Вернуться к работе..." : "Back to work...")` "SecondOfficeDayEnd">>
<<nextPhase>>
<</link>>
<</replace>>
<</button>>
/* --- ВАРИАНТ 2: НАКАЗАТЬ --- */
<<button `(State.variables.lang == "ru" ? "Сделать выговор" : "Issue a formal reprimand")`>>
<<set $mcSC += 4>>
<<run $historyOfChoices.push({
ru: "Вы наказали Хлою за прогул.",
en: "You issued a formal reprimand for Chloe."
})>>
<<replace "#choice-area" t8n>>
<<ru>>
<<say "hero" "Хватит, Хлоя. Твои сказки про бабушку оставь для кого-нибудь другого. Ты отсутствовала на месте без предупреждения. Я официально выношу тебе выговор, и твоя премия за этот месяц будет урезана на 5%. Пусть это послужит уроком.">>
<div class="msg-box-autor">Улыбка мгновенно исчезает с её лица. Игривость испаряется, сменяясь ледяной маской. Хлоя выпрямляется, её взгляд становится острым, как бритва. Кажется, она не ожидала, что ты действительно пойдешь на финансовые санкции.</div>
<<say "sec" "Пять процентов? Интересно. Что ж, я вас услышала, мистер $playerName. Вижу, вы решили строить из себя строгого босса. Я не возражаю.">>
<div class="msg-box-autor">
Она не извиняется. Она просто смотрит на тебя несколько секунд в полной тишине, и в этом взгляде нет ни капли тепла. Затем, резко развернувшись на каблуках, она направляется к выходу, намеренно громко хлопнув дверью. Теперь каждый в офисе знает — с тобой шутки плохи.
</div>
<</ru>>
<<en>>
<<say "hero" "Enough, Chloe. Save your fairy tales about your grandmother for someone else. You were absent without notice. I am formally issuing you a reprimand, and your bonus for this month will be cut by 5%. Let this serve as a lesson.">>
<div class="msg-box-autor">
The smile instantly vanishes from her face. The playfulness evaporates, replaced by an icy mask. Chloe straightens up, her gaze becoming razor-sharp. It seems she didn't expect you to follow through with financial sanctions.
</div>
<<say "sec" "Five percent? Interesting. Well, I hear you loud and clear, Mr. $playerName. I see you've decided to play the strict boss role. I don't mind.">>
<div class="msg-box-autor">
She doesn't apologize. She simply stares at you for a few seconds in total silence, with no warmth in her eyes. Then, spinning sharply on her heels, she heads for the exit, intentionally slamming the door. Now everyone in the office knows — you are not to be trifled with.
</div>
<</en>>
<<link `($lang == "ru" ? "Вернуться к работе..." : "Back to work...")` "SecondOfficeDayEnd">>
<<nextPhase>>
<</link>>
<</replace>>
<</button>>
</div>
<</nobr>><<nobr>>\
<<set setup.charsDB["sec"].met = true>>
<<run showNotification($lang === 'ru' ? "Новые данные добавлены в блокнот." : "New entries have been logged in the Journal")>>
<br>
<<ru>>
<div class="msg-box-autor">
Остаток дня проходит в монотонной офисной рутине. Стопка бумаг на твоем столе то уменьшается, то растет снова. Время от времени дверь кабинета приоткрывается, и Хлоя заносит очередную порцию документов на подпись.
</div>
<<if $chloeForgiven>>
<div class="msg-box-autor">
Каждый раз, заходя к тебе, Хлоя буквально светится. Она то и дело задерживается у стола чуть дольше необходимого, принимая вызывающие позы и бросая на тебя многозначительные взгляды. Её улыбка полна скрытого торжества — она явно воспринимает твою снисходительность как свою личную победу.
</div>
<<else>>
<div class="msg-box-autor">
Визиты Хлои стали короткими и ледяными. Она заходит с идеально прямой спиной, кладет папки на стол резким движением и смотрит на тебя холодным, дерзким взглядом. В её молчании чувствуется затаенная злость, но она продолжает выполнять свои обязанности с безупречной точностью.
</div>
<</if>>
<div class="msg-box-autor">
Во время одного из таких визитов, она, как бы невзначай, решает сменить тему.
</div>
<img src="data/images/act1/chloe1.webp" class="scene-img" width="700">
<<say "sec" "Кстати, мистер $playerName, как вам ваш новый дом? Обжились уже? Такой огромный особняк, должно быть, требует немало хлопот.">>
<<say "hero" "Дом отличный, спасибо. Вот только с хлопотами ты права — мы с женой уже с ног сбились, пытаясь найти толкового человека для уборки. В нашем городке это, оказывается, целая проблема.">>
<div class="msg-box-autor">
Хлоя загадочно улыбается, и на мгновение тебе кажется, что в её глазах мелькнула странная уверенность.
</div>
<<say "sec" "Ох, не переживайте так. Я уверена, что именно сегодня у вас всё получится, и та самая кандидатка найдется сама собой. Просто верьте в удачу.">>
<div class="msg-box-autor">
Когда солнце начинает клониться к закату, к тебе заглядывает Грейс, чтобы обсудить финальные отчеты перед твоим уходом.
</div>
<<say "fin" "Фух... Ну и день. $playerName, я зашла сверить последние цифры по транзакциям, но, если честно, мне больше хотелось обсудить твой разговор с нашей «звездой» из приемной.">>
<<if $chloeForgiven>>
<<set $finLoyalty -= 5>>
<<say "fin" "Знаешь, я удивлена твоим решением. Оставить её выходку просто с предупреждением? Честно, я думала, ты будешь жестче. Хлоя… она умеет чувствовать слабину у людей, $playerName. Её наглость бесит меня больше всех в этом офисе, а ты просто спустил всё на тормозах. Она теперь решит, что ей позволено всё.">>
<div class="msg-box-autor">Грейс поджимает губы, и ты чувствуешь, что её доверие к тебе как к твердому руководителю немного пошатнулось.</div>
<<else>>
<<say "fin" "Я слышала про выговор и штраф. Знаешь что? Так ей и нужно. В последнее время Хлоя стала невыносимо наглой, будто она тут настоящая хозяйка. Честно говоря… я уже начала думать, что она здесь неприкасаемая. Рада, что ты поставил её на место.">>
<div class="msg-box-autor">Грейс одобрительно кивает, явно довольная твоей решительностью.</div>
<</if>>
<div class="msg-box-autor">
Попрощавшись с Грейс, ты собираешь вещи. Первый полноценный рабочий день окончен. Ты выключаешь компьютер, запираешь кабинет и направляешься к выходу. Пора домой.
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
The rest of the day passes in a monotonous office routine. The stack of papers on your desk shrinks only to grow again. From time to time, the office door creaks open as Chloe brings in another batch of documents for your signature.
</div>
<<if $chloeForgiven>>
<div class="msg-box-autor">
Every time she enters, Chloe practically glows. She lingers by your desk a bit longer than necessary, striking provocative poses and casting suggestive glances your way. Her smile is full of hidden triumph — she clearly views your leniency as her personal victory.
</div>
<<else>>
<div class="msg-box-autor">
Chloe's visits have become brief and icy. She enters with her back perfectly straight, places the folders on the desk with a sharp movement, and meets your eyes with a cold, defiant stare. There is a suppressed fury in her silence, yet she continues to perform her duties with flawless precision.
</div>
<</if>>
<div class="msg-box-autor">
During one of these visits, she decides to change the subject as if casually.
</div>
<img src="data/images/act1/chloe1.webp" class="scene-img" width="700">
<<say "sec" "By the way, Mr. $playerName, how is your new house? Settled in yet? Such a massive mansion must be quite a handful to manage.">>
<<say "hero" "The house is great, thanks. But you're right about the hassle — my wife and I are exhausted trying to find a decent person for the housework. It turns out to be quite a problem in our little town.">>
<div class="msg-box-autor">
Chloe smiles mysteriously, and for a moment, you think you see a strange confidence flicker in her eyes.
</div>
<<say "sec" "Oh, don't worry too much. I'm sure that today of all days, everything will work out, and the right candidate will just turn up. Just have a little faith in luck.">>
<div class="msg-box-autor">
As the sun begins to set, Grace stops by to discuss the final reports before you head out.
</div>
<<say "fin" "Phew... What a day. $playerName, I came to check the final transaction figures, but honestly, I was more curious to hear about your talk with our 'reception star'.">>
<<if $chloeForgiven>>
<<say "fin" "You know, I'm surprised by your choice. Letting her stunt slide with just a warning? Honestly, I thought you'd be tougher. Chloe... she knows how to sense weakness in people, $playerName. Her arrogance annoys me more than anyone in this office, and you just let her off the hook. She'll think she can get away with anything now.">>
<div class="msg-box-autor">Grace purses her lips, and you feel her confidence in you as a firm leader waver slightly.</div>
<<else>>
<<say "fin" "I heard about the reprimand and the fine. You know what? It serves her right. Lately, Chloe has become unbearably entitled, acting like she's the one running the show. Honestly... I was starting to think she was untouchable. Glad you put her in her place.">>
<div class="msg-box-autor">Grace nods approvingly, clearly pleased with your decisiveness.</div>
<</if>>
<div class="msg-box-autor">
After saying goodbye to Grace, you pack your things. The first full workday is over. You turn off the computer, lock your office, and head for the exit. Time to go home.
</div>
<</en>>
<div id="choice-area">
<<link `($lang == "ru" ? "Отправиться домой" : "Go home")` "Evening_Home_Arrival">>
<<nextPhase>>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<audio "bgm_chill" fadeout>>\
<<nobr>>
<<ru>>
<div class="msg-box-autor">
Прибыв домой, ты замечаешь жену, снова сидящую на диване с ноутбуком. По её поникшим плечам и усталому вздоху становится ясно: поиски помощницы по дому и сегодня не увенчались успехом.
</div>
<div class="msg-box-autor">
После легкого ужина ты уходишь в кабинет. Быстрая проверка рабочей почты не приносит сюрпризов, и ты уже собираешься выключать свет, когда рука сама тянется к «тому самому» ноутбуку. Ты решаешь проверить, нет ли изменений через бэкдор.
</div>
<div class="msg-box-autor">
Экран вспыхивает холодным светом. В трее операционной системы висит уведомление от зашифрованного мессенджера. Ты замираешь. В чате, доступ к которому есть лишь у тебя и пары человек из «прошлого», висит свежее сообщение:
</div>
<img src="data/images/act1/vacancy.webp" class="scene-img" width="700">
<div class="msg-box-autor">
<span style="color: #00ff00;">«Вакансия домработницы. Готова к переезду. Контакт: +1-XXX-XXX-XXXX»
<br>
Отправлено 7 минут назад</span>
</div>
<<say "hero" "Что за чертовщина? Этого просто не может быть. Этот чат — не доска объявлений. Кто-то специально вбросил это сюда..." "thought">>
<div class="msg-box-autor">
Любопытство пересиливает осторожность. Ты зовешь $wifeName в кабинет, стараясь не выдавать волнения, и вы вместе набираете указанный номер.
</div>
<<say "unknown" "Алло? Да, я ищу работу. Но сразу предупреждаю: мне нужно две недели, чтобы закрыть дела у текущих хозяев. И я согласна только на полный релокационный пакет — переезд, жилье и абонемент в спортзал в вашем городе." "phone">>
<<say "hero" "Слишком уверенный тон для человека, который ищет работу..." "thought">>
<<say "wife" "Странно… откуда они вообще узнали, что мы ищем домработницу?">>
<div class="msg-box-autor">
Вы с женой переглядываетесь. Условия жесткие, и тон девушки кажется подозрительно уверенным, но выбора нет. После короткого обсуждения вы соглашаетесь.
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
Arriving home, you notice your wife sitting on the sofa with her laptop again. From her slumped shoulders and weary sigh, it's clear: the search for a housekeeper has yielded no results today either.
</div>
<div class="msg-box-autor">
After a light dinner, you head to your office. A quick check of your work email brings no surprises, and you’re just about to turn out the lights when your hand reaches for "that" laptop. You decide to check for any updates via the backdoor.
</div>
<div class="msg-box-autor">
The screen flashes with a cold glow. A notification hangs in the system tray from the encrypted messenger. You freeze. In a chat accessible only to you and a few people from your "past," there is a fresh message:
</div>
<img src="data/images/act1/vacancy.webp" class="scene-img" width="700">
<div class="msg-box-autor">
<span style="color: #00ff00;">"Housekeeper vacancy. Ready for relocation. Contact: +1-XXX-XXX-XXXX"
<br>
Sent 7 minutes ago</span>
</div>
<<say "hero" "What the hell? This can't be right. This chat isn't a classifieds board. Someone dropped this here on purpose..." "thought">>
<div class="msg-box-autor">
Curiosity outweighs caution. You call $wifeName into the office, trying not to show your unease, and together you dial the number.
</div>
<<say "unknown" "Hello? Yes, I am looking for work. But I'll warn you upfront: I need two weeks to wrap things up with my current employers. And I only accept a full relocation package — moving costs, housing, and a gym membership in your city." "phone">>
<<say "hero" "A bit too confident for someone looking for a job..." "thought">>
<<say "wife" "Strange… how did they even know we were looking for a housekeeper?">>
<div class="msg-box-autor">
You and your wife exchange a look. The terms are stiff, and the woman's tone is suspiciously confident, but you have no other choice. After a brief discussion, you agree.
</div>
<</en>>
<div id="choice-area">
<<link `($lang == "ru" ? "Лечь спать" : "Go to sleep")` "free_bedroom">>
<<set $pIndex = 0>>
<<set $day = 5>>
<<set $wdIndex = ($wdIndex + 1) % 7>>
<<set $showSandboxIntro = true>>
<<set $allowSkip = true>>
<<set $eventDay = 19>>
<<set $eventPassage = "Story_Housekeeper_Arrival">>
<<audio "bgm_freeroom" volume 0 fadein loop>>\
<</link>>
</div>
<</nobr>><<nobr>>\
<<updateWorld>>
<img src="data/location/kitchen.webp" class="scene-img" width="500">
<div id="kitchen-content">
<<ru>>
<div class="msg-box-autor">
Просторная кухня, оборудованная по последнему слову техники. На столе всегда стоит ваза со свежими фруктами, а воздух наполнен ароматом свежесваренного кофе.
</div>
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
<<if $pIndex == 0>>
$wifeName в легком халате хлопочет у плиты, готовя завтрак. Она выглядит сонной, но очень домашней.
<img src="data/images/act1/breakfast.webp" class="scene-img" width="600">
<<elseif $pIndex == 1>>
$wifeName сидит за столом с чашкой чая, просматривая что-то в планшете.
<<else>>
$wifeName зашла сюда перекусить, прислонившись к кухонному островку.
<</if>>
</div>
<</if>>
<</ru>>
<<en>>
<div class="msg-box-autor">
A spacious kitchen equipped with the latest technology. There's always a bowl of fresh fruit on the table, and the air is filled with the aroma of freshly brewed coffee.
</div>
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
<<if $pIndex == 0>>
$wifeName, in a light robe, is busy at the stove preparing breakfast. She looks sleepy but very cozy.
<img src="data/images/act1/breakfast.webp" class="scene-img" width="600">
<<elseif $pIndex == 1>>
$wifeName is sitting at the table with a cup of tea, looking at her tablet.
<<else>>
$wifeName popped in here for a snack, leaning against the kitchen island.
<</if>>
</div>
<</if>>
<</en>>
<div id="choice-area">
<<if $wifeLoc == passage()>>
<<if $pIndex == 0>>
<<link `($lang == "ru" ? "Помочь с завтраком" : "Help with breakfast")`>>
<<set $wifeLove += 1>>
<<replace "#choice-area">>
<div class="msg-box-autor">
<b><<print ($lang == "ru" ? "Вы вместе нарезаете овощи и весело болтаете. Совместная готовка определенно сближает вас." : "You chop vegetables together and chat cheerfully. Cooking together definitely brings you closer.")>></b>
</div>
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "free_kitchen">><<nextPhase>><</link>>
<</replace>>
<</link>>
<</if>>
<<link `($lang == "ru" ? "Обнять и поцеловать" : "Hug and kiss")`>>
<<set $wifeLove += 1>>
<<replace "#choice-area">>
<div class="msg-box-autor">
<b><<print ($lang == "ru" ? "Ты подходишь сзади и обнимаешь её. $wifeName довольно жмурится и отвечает на твой поцелуй." : "You approach from behind and hug her. $wifeName purrs with delight and returns your kiss.")>></b>
</div>
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "free_kitchen">><<nextPhase>><</link>>
<</replace>>
<</link>>
<</if>>
<<link `($lang == "ru" ? "Перекусить" : "Have a snack")`>>
<<replace "#choice-area">>
<div class="msg-box-autor">
<<print ($lang == "ru" ? "Ты быстро перекусил свежими фруктами и выпил чашку кофе." : "You had a quick snack of fresh fruit and a cup of coffee.")>>
</div>
<img src="data/images/act1/bftea.webp" class="scene-img" width="400">
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "free_kitchen">><<nextPhase>><</link>>
<</replace>>
<</link>>
</div>
</div>
<<roomMenu>>
<</nobr>><<nobr>>\
<<updateWorld>>
<<ru>>
<<if $showSandboxIntro>>
<div class="msg-box-autor">
Прошло уже довольно много дней, как вы переехали. Жизнь постепенно входит в колею, но ожидание новой помощницы нависает над вами невидимой тенью.
<br><br>
<b>Наступило время свободного режима.</b>
У тебя есть 2 недели. Ты волен сам выбирать, как проводить время: работай в офисе, общайся с $wifeName или изучай город. Сюжет продолжится автоматически на 19-й день.
</div>
<<set $showSandboxIntro = false>>
<</if>>
<img src="data/location/bedroom.webp" class="scene-img" width="500">
<div class="msg-box-autor">
Ты находишься в своей просторной спальне.
<<if $pIndex == 0>>
Утренний свет мягко падает на кровать.
<<elseif $pIndex == 3>>
В комнате царит уютный полумрак. Пора подумать о сне.
<<else>>
Тихое и спокойное место, где можно перевести дух.
<</if>>
</div>
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
<<if $pIndex == 0>>
<img src="data/images/act1/wifesleep.webp" class="scene-img" width="600">
$wifeName еще сладко спит, закутавшись в одеяло. Она выглядит такой безмятежной.
<<elseif $pIndex == 3>>
<img src="data/images/act1/wifebook.webp" class="scene-img" width="600">
$wifeName уже в постели. Она отложила книгу и смотрит на тебя, ожидая, когда ты присоединишься.
<<else>>
$wifeName прилегла отдохнуть, листая что-то в своем телефоне.
<</if>>
</div>
<</if>>
<</ru>>
<<en>>
<<if $showSandboxIntro>>
<div class="msg-box-autor">
It’s been quite a few days since the move. Life is finally settling into a routine, though the anticipation of your new assistant's arrival still hangs over you.
<br><br>
<b>Free-roam mode is now active.</b>
You have 2 weeks to yourself. You’re free to choose how to spend your time: work at the office, spend time with $wifeName, or explore the city. The story will resume automatically on day 19.
</div>
<<set $showSandboxIntro = false>>
<</if>>
<img src="data/location/bedroom.webp" class="scene-img" width="500">
<div class="msg-box-autor">
You are in your spacious bedroom.
<<if $pIndex == 0>>
Morning light filters softly onto the bed.
<<elseif $pIndex == 3>>
The room is cast in a cozy dim light. It’s about time to turn in.
<<else>>
A quiet, peaceful spot to catch your breath.
<</if>>
</div>
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
<<if $pIndex == 0>>
$wifeName is still sound asleep, bundled up in the blankets. She looks completely at peace.
<<elseif $pIndex == 3>>
$wifeName is already in bed. She’s put her book aside and is watching you, waiting for you to join her.
<<else>>
$wifeName is lying down for a bit, scrolling through something on her phone.
<</if>>
</div>
<</if>>
<</en>>
<div id="choice-area">
/* НОЧНОЙ ИВЕНТ */
<<if $pIndex == 3>>
<<if $wifeLoc == passage()>>
<hr>
<<link `($lang == "ru" ? "Обнять $wifeName и начать ласкать" : "Hug $wifeName and start caressing")` "event_bedroom_sex">>
<<set $wifeLove += 1>>
<</link>>
<<link `($lang == "ru" ? "Лечь спать" : "Go to sleep")` "free_bedroom">>
<<skipToMorning>>
<</link>>
<<else>>
<<link `($lang == "ru" ? "Лечь спать" : "Go to sleep")` "free_bedroom">>
<<skipToMorning>>
<</link>>
<</if>>
<</if>>
</div>
<<roomMenu>>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<img src="data/location/bathroom.webp" class="scene-img" width="700">
<div id="shower-status-container">
<div class="msg-box-autor">
<<ru>>
<<if $wifeLoc == passage()>>
За стеклянной дверью душевой кабины виднеется силуэт $wifeName. Слышно мерное шуршание воды.
<<else>>
Сейчас здесь никого нет. Идеальное время, чтобы побыть наедине со своими мыслями.
<</if>>
<</ru>>
<<en>>
<<if $wifeLoc == passage()>>
You can see $wifeName's silhouette behind the glass shower door.
<<else>>
The room is empty. Perfect time for some peace and quiet.
<</if>>
<</en>>
</div>
</div>
<hr>
<div id="choice-area">
<<if $wifeLoc == passage()>>
<<link `($lang == "ru" ? "Присоединиться к $wifeName в душе" : "Join $wifeName in the shower")`>>
<<set $wifeLove += 1>>
<<nextPhase>>
<<replace "#shower-status-container">>
<div class="msg-box-autor">
<b>
<<ru>>Вы с $wifeName принимаете приятный душ вместе. Это укрепляет ваши отношения.<</ru>>
<<en>>You and $wifeName take a pleasant shower together. This strengthens your relationship.<</en>>
</b>
</div>
<img src="data/images/act1/wifemcshower.gif" class="scene-img" width="300">
<</replace>>
<<replace "#choice-area">><</replace>>
<</link>>
<</if>>
<<if $pIndex != 3>>
<<link `($lang == "ru" ? "Принять освежающий душ" : "Take a refreshing shower")`>>
<<replace "#shower-status-container">>
<div class="scene-container">
</div>
<div class="msg-box-autor">
<b>
<<ru>>Ты принял освежающий душ. Прохладная вода смыла усталость.<</ru>>
<<en>>You took a refreshing shower. The cool water washed away your fatigue.<</en>>
</b>
</div>
<img src="data/images/act1/shower.gif" class="scene-img" width="400">
<</replace>>
<<replace "#choice-area">><</replace>>
<</link>>
<</if>>
</div>
<<roomMenu>>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<img src="data/location/livingroom.webp" class="scene-img" width="500">
<div class="msg-box-autor">
<<ru>>Просторная и светлая гостиная. В центре стоит мягкий диван, а напротив — большая ТВ-панель.<</ru>>
<<en>>A spacious and bright living room. A soft sofa sits in the center, facing a large TV.<</en>>
</div>
<div id="livingroom-status">
<div class="msg-box-autor">
<<if $wifeLoc == passage()>>
<<if $wfriendLoc == passage()>>
<<ru>>$wifeName и Джессика сидят на диване, попивая вино. Их разговор прерывается тихим смехом, а взгляды, которыми они иногда обмениваются, сложно назвать случайными.<</ru>>
<<en>>$wifeName and Jessica are sitting on the sofa, sipping wine. Their conversation is punctuated by quiet laughter, and the looks they occasionally exchange can hardly be called accidental.<</en>>
<img src="data/images/act1/friendslivingroom.webp" class="scene-img">
<<else>>
<<set _wifeMood = either("tired","playful","distant")>>
<<ru>>
<<if _wifeMood == "tired">>$wifeName устало откинулась на спинку дивана, лениво листая журнал.
<<elseif _wifeMood == "playful">>$wifeName выглядит в хорошем настроении — заметив тебя, она слегка прикусывает губу и улыбается.
<<else>>$wifeName почти не обращает внимания, погружённая в свои мысли.<</if>>
<</ru>>
<<en>>
<<if _wifeMood == "tired">>$wifeName leans back tiredly, lazily flipping through a magazine.
<<elseif _wifeMood == "playful">>$wifeName seems in a good mood — she bites her lip slightly and smiles at you.
<<else>>$wifeName barely notices you, lost in her thoughts.<</if>>
<</en>>
<</if>>
<<else>>
<<ru>>В гостиной сейчас никого нет. Здесь тихо и спокойно.<</ru>>
<<en>>The living room is empty right now. It's quiet and peaceful.<</en>>
<</if>>
</div>
</div>
<hr>
<div id="choice-area">
<<if $wifeLoc == passage() and $wfriendLoc != passage()>>
<<link `($lang == "ru" ? "Посмотреть телешоу с женой" : "Watch a TV show with wife")`>>
<<set $wifeLove += 1>>
<<nextPhase>>
<<replace "#livingroom-status">>
<div class="msg-box-autor"><b>
<<ru>>Вы с $wifeName уютно устроились на диване. Совместный просмотр глупого телешоу и легкий смех заметно сблизили вас.<</ru>>
<<en>>You and $wifeName get cozy on the sofa. Watching a silly TV show together and sharing a few laughs has brought you closer.<</en>>
</b></div>
<img src="data/location/twotv.webp" class="scene-img">
<</replace>>
<<replace "#choice-area">><</replace>>
<</link>>
<hr>
<</if>>
<<if $wifeLoc == passage() and $wfriendLoc == passage()>>
<<link `($lang == "ru" ? "Присоединиться к девичнику" : "Join the girls' talk")`>>
<<set $_eventTriggered = false>>
<<include "livingroom_events_logic">>
<<if !$_eventTriggered>>
<<goto "event_livingroom_girls">>
<</if>>
<</link>>
<</if>>
<<if $pIndex != 3>>
<<link `($lang == "ru" ? "Посмотреть телевизор в одиночестве" : "Watch TV alone")`>>
<nextPhase>
<<replace "#livingroom-status">>
<div class="msg-box-autor"><b>
<<ru>>Ты провел некоторое время перед экраном, бесцельно переключая каналы. Это помогло немного отвлечься от дел.<</ru>>
<<en>>You spent some time in front of the screen, aimlessly flipping through channels. It helped to clear your mind for a bit.<</en>>
</b>
</div>
<img src="data/location/tv.webp" class="scene-img">
<</replace>>
<<replace "#choice-area">><</replace>>
<</link>>
<</if>>
</div>
<<roomMenu>>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
<<if $pIndex == 0>>
Город просыпается. Улицы залиты мягким утренним светом. Самое время, чтобы успеть по делам.
<img src="data/location/city_day.webp" class="scene-img" width="500">
Перед тобой раскинулся город. Куда отправимся?
<<elseif $pIndex == 1>>
Полдень. Город гудит от машин и спешащих людей. Солнце жарит нещадно, все заведения открыты.
<img src="data/location/city_day.webp" class="scene-img" width="500">
Перед тобой раскинулся город. Куда отправимся?
<<elseif $pIndex == 2>>
Вечерние сумерки опускаются на улицы. Загораются неоновые вывески, ритм города замедляется.
<img src="data/location/city_day.webp" class="scene-img" width="500">
Перед тобой раскинулся город. Куда отправимся?
<<else>>
Улицы погружены во тьму, освещаемую лишь редкими фонарями. Вокруг подозрительно тихо.
<img src="data/location/city_night.webp" class="scene-img" width="500">
<b>Уже слишком поздно. В такое время никуда не стоит идти, лучше вернуться домой.</b>
<</if>>
<</ru>>
<<en>>
<<if $pIndex == 0>>
The city is waking up. The streets are flooded with soft morning light. It's the perfect time to get things done.
<img src="data/location/city_day.webp" class="scene-img" width="500">
The city stretches out before you. Where shall we go?
<<elseif $pIndex == 1>>
It's noon. The city hums with cars and people. The sun is merciless, and all venues are open.
<img src="data/location/city_day.webp" class="scene-img" width="500">
The city stretches out before you. Where shall we go?
<<elseif $pIndex == 2>>
Evening twilight settles over the streets. Neon signs light up, and the city's rhythm slows down.
<img src="data/location/city_day.webp" class="scene-img" width="500">
The city stretches out before you. Where shall we go?
<<else>>
The streets are shrouded in darkness, lit only by occasional streetlamps. It's suspiciously quiet.
<img src="data/location/city_night.webp" class="scene-img" width="500">
<b>It's already too late. You shouldn't be out at this hour; it's better to go back home.</b>
<</if>>
<</en>>
</div>
<div class="navigation-container">
<div class="room-grid">
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_bedroom')">
<img src="data/location/house.webp">
<div class="room-label"><<print ($lang == "ru" ? "Вернуться домой" : "Return Home")>></div>
</div>
<<if $pIndex < 3>>
<div class="room-card" onclick="SugarCube.Engine.play('free_office')">
<img src="data/location/office.webp">
<div class="room-label"><<print ($lang == "ru" ? "Офис" : "Office")>></div>
</div>
<</if>>
<<if $pIndex < 3>>
<div class="room-card" onclick="SugarCube.Engine.play('free_mall')">
<img src="data/location/mall.webp">
<div class="room-label"><<print ($lang == "ru" ? "Магазины" : "Shopping Mall")>></div>
</div>
<</if>>
<<if $pIndex < 3>>
<div class="room-card" onclick="SugarCube.Engine.play('free_gym')">
<<checkRoomIcons "free_gym">>
<img src="data/location/gym.webp">
<div class="room-label"><<print ($lang == "ru" ? "Спортзал" : "GYM")>></div>
</div>
<</if>>
<<if $pIndex < 3>>
<div class="room-card" onclick="SugarCube.Engine.play('free_cafe')">
<<checkRoomIcons "free_cafe">>
<img src="data/location/cafe_outside.webp">
<div class="room-label"><<print ($lang == "ru" ? "Кафе" : "Cafe")>></div>
</div>
<</if>>
</div>
</div>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<<ru>>
<div class="msg-box-autor">
Бизнес-центр встретил тебя привычным гулом кондиционеров и запахом кофе. Здесь решаются судьбы крупных контрактов.
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
The business center greeted you with the familiar hum of air conditioners and the smell of coffee. This is where the fates of major contracts are decided.
</div>
<</en>>
<div class="navigation-container">
<div class="room-grid">
<div class="room-card" onclick="SugarCube.Engine.play('office_my_room')">
<<checkRoomIcons "office_my_room">>
<img src="data/location/my_office.webp">
<div class="room-label"><<print ($lang == "ru" ? "Мой кабинет" : "My Office")>></div>
</div>
<div class="room-card" onclick="SugarCube.Engine.play('office_reception')">
<<checkRoomIcons "office_reception">>
<img src="data/location/reception.webp">
<div class="room-label"><<print ($lang == "ru" ? "Приемная" : "Reception")>></div>
</div>
<div class="room-card" onclick="SugarCube.Engine.play('office_finance')">
<<checkRoomIcons "office_finance">>
<img src="data/location/financial.webp">
<div class="room-label"><<print ($lang == "ru" ? "Фин. отдел" : "Finance Dept")>></div>
</div>
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_exithouse')">
<img src="data/location/city_day.webp">
<div class="room-label"><<print ($lang == "ru" ? "Вернуться на карту" : "Back to Map")>></div>
</div>
</div>
</div>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<<if $pIndex == 3>>
<<goto "free_exithouse">>
<</if>>
<<ru>>
<div class="msg-box-autor">
Яркие витрины и толпы людей. Торговый центр — лучшее место, чтобы потратить честно заработанные деньги.
</div>
<</ru>>
<<en>>
<div class="msg-box-autor">
Bright windows and crowds of people. The shopping mall is the best place to spend your hard-earned money.
</div>
<</en>>
<div class="navigation-container">
<div class="room-grid">
<div class="room-card" onclick="SugarCube.Engine.play('free_mall_clothes')">
<<checkRoomIcons "free_mall_clothes">>
<img src="data/location/clothes.webp">
<div class="room-label"><<print ($lang == "ru" ? "Магазин одежды" : "Clothing Store")>></div>
</div>
<div class="room-card" onclick="SugarCube.Engine.play('free_mall_lingerie')">
<<checkRoomIcons "free_mall_lingerie">>
<img src="data/location/lingerie.webp">
<div class="room-label"><<print ($lang == "ru" ? "Магазин нижнего белья" : "Underwear Store")>></div>
</div>
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_exithouse')">
<img src="data/location/city_day.webp">
<div class="room-label"><<print ($lang == "ru" ? "Вернуться на карту" : "Back to Map")>></div>
</div>
</div>
</div>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<<if $pIndex == 3>>
<<goto "free_exithouse">>
<</if>>
<img src="data/location/cafe.webp" class="scene-img" width="500">
<<ru>>
<div class="msg-box-autor">
Уютное городское кафе. В воздухе витает аромат свежемолотых зерен и свежей выпечки. Мягкий гул голосов и негромкая музыка создают расслабляющую атмосферу.
</div>
/* ПРОВЕРКА ПЕРСОНАЖЕЙ */
<<if $wifeLoc == passage() or $wfriendLoc == passage() or $secLoc == passage()>>
<div class="msg-box-autor">
<<if $wifeLoc == passage() and $wfriendLoc == passage()>>
За столиком у окна ты видишь $wifeName и Джессику. Они смеются, обсуждая что-то за чашкой латте.
<<elseif $wifeLoc == passage()>>
$wifeName сидит одна, листая меню. Похоже, она решила сделать перерыв в делах.
<<elseif $wfriendLoc == passage()>>
Джессика здесь. Она увлечена своим телефоном, изредка потягивая напиток.
<<elseif $secLoc == passage()>>
Ты замечаешь Хлою. Она сидит за дальним столиком, выглядя довольно задумчивой.
<</if>>
</div>
<<else>>
<div class="msg-box-autor">
В кафе много незнакомых лиц, но никого из твоих близких сейчас здесь нет.
</div>
<</if>>
<</ru>>
<<en>>
<div class="msg-box-autor">
A cozy city cafe. The air is filled with the aroma of freshly ground beans and pastries. A soft hum of voices and quiet music create a relaxing atmosphere.
</div>
<<if $wifeLoc == passage() or $wfriendLoc == passage() or $secLoc == passage()>>
<div class="msg-box-autor">
<<if $wifeLoc == passage() and $wfriendLoc == passage()>>
You see $wifeName and Jessica by the window. They are laughing over a cup of latte.
<<elseif $wifeLoc == passage()>>
$wifeName is sitting alone, browsing the menu.
<<elseif $wfriendLoc == passage()>>
Jessica is here, absorbed in her phone.
<<elseif $secLoc == passage()>>
You notice Chloe. She's at a far table, looking quite pensive.
<</if>>
</div>
<</if>>
<</en>>
<div id="choice-area">
<<if $wifeLoc == passage() and $wfriendLoc == passage()>>
<<link `($lang == "ru" ? "Подойти к $wifeName и Джессике" : "Approach $wifeName and Jessica")`>>
<<set $_eventTriggered = false>>
<<include "cafe_events_logic">>
<<if !$_eventTriggered>>
<<goto "event_cafe">>
<</if>>
<</link>>
<<elseif $wifeLoc == passage()>>
<<link `($lang == "ru" ? "Подсесть к $wifeName" : "Sit with $wifeName")` "event_cafe_wife">><</link>>
<<elseif $wfriendLoc == passage()>>
<<link `($lang == "ru" ? "Заговорить с Джессикой" : "Talk to Jessica")` "event_cafe_wfriend">><</link>>
<<elseif $secLoc == passage()>>
<<link `($lang == "ru" ? "Подойти к Хлое" : "Approach Chloe")`>>
<<set $_eventTriggered = false>>
<<include "seccafe_events_logic">>
<<if !$_eventTriggered>>
<<goto "event_seccafe">>
<</if>>
<</link>>
<</if>>
<<link `($lang == "ru" ? "Выпить кофе" : "Drink coffee")` "free_cafe">>
<<nextPhase>>
<</link>>
</div>
<div class="navigation-container">
<div class="room-grid">
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_exithouse')">
<img src="data/location/city_day.webp">
<div class="room-label"><<print ($lang == "ru" ? "Вернуться на карту" : "Back to Map")>></div>
</div>
</div>
<</nobr>>\<<nobr>>\
<<audio "bgm_freeroom" fadeout>>\
<div class="msg-box-autor">
<<ru>>
Утро в новом доме начинается тихо и размеренно. Солнечный свет мягко пробивается сквозь плотные шторы спальни. Ты чувствуешь, как $wifeName рядом с тобой медленно потягивается и поворачивается, прижимаясь щекой к твоему плечу.
<br><br>
Спустя несколько минут вы оба спускаетесь вниз на кухню. $wifeName, ещё в лёгком шелковом халате, ставит на стол тарелки с тостами, яичницей и фруктами.
<</ru>>
<<en>>
Morning in the new house begins quietly and steadily. Sunlight softly filters through the heavy bedroom curtains. You feel $wifeName beside you slowly stretching and turning, pressing her cheek against your shoulder.
<br><br>
A few minutes later, you both head down to the kitchen. $wifeName, still in a light silk robe, sets plates of toast, scrambled eggs, and fruit on the table.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Доброе утро, любимый..." : "Good morning, love...")`>>
<div class="msg-box-autor">
<<ru>>
Вы завтракаете, обмениваясь привычными утренними фразами. О погоде, о том, как хорошо спалось в новой кровати, о планах на выходные. Всё как обычно. Спокойно. Почти идиллически.
<</ru>>
<<en>>
You eat breakfast, exchanging the usual morning small talk. About the weather, how well you slept in the new bed, and plans for the weekend. Everything is as usual. Calm. Almost idyllic.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Кстати... расскажи, что у тебя происходило в офисе за эти две недели? Ты почти ничего не рассказывал." : "By the way... tell me, what’s been going on at the office these past two weeks? You’ve barely said a word about it.")`>>
<<if $firedSteve == true>>
<div class="msg-box-autor">
<<ru>>
Ты на секунду замялся с вилкой в руке, но потом спокойно ответил.
<</ru>>
<<en>>
You hesitate for a second, fork in hand, but then answer calmly.
<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Пришлось уволить одного сотрудника. Стива. Он проворачивал махинации с деньгами компании." : "I had to fire an employee. Steve. He was running some schemes with the company's money.")`>>
<<say "wife" `($lang == "ru" ? "Серьёзно? А почему именно ты его уволил? Разве этим не занимается отдел безопасности или HR?" : "Seriously? Why did you have to fire him yourself? Isn't that a job for HR or security?")`>>
<<say "hero" `($lang == "ru" ? "Потому что так сказала Хлоя. Она первая это заметила и настояла, чтобы я принял меры немедленно." : "Because Chloe said so. She was the first to notice and insisted I take immediate action.")`>>
<div class="msg-box-autor">
<<ru>>
$wifeName удивлённо приподняла брови, но уже через пару секунд её выражение лица смягчилось.
<</ru>>
<<en>>
$wifeName raises her eyebrows in surprise, but after a few seconds, her expression softens.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Хлоя? ...Ну надо же. Я думала, она просто красивая секретарша. А она, оказывается, ещё и глазастая." : "Chloe? ...Well, I'll be. I thought she was just a pretty secretary. Turns out she's quite sharp-eyed.")`>>
<<say "wife" `($lang == "ru" ? "Правильно сделала, что сразу тебе сказала. Хорошо, когда в команде есть такие внимательные люди. Значит, у тебя действительно хорошая секретарша." : "She did the right thing telling you right away. It's good to have such attentive people on the team. Sounds like you really do have a good secretary.")`>>
<div class="msg-box-autor">
<<ru>>
Ты кивнул, соглашаясь. На какое-то мгновение на кухне снова воцарилась спокойная утренняя атмосфера.
<</ru>>
<<en>>
You nod in agreement. For a moment, the calm morning atmosphere returns to the kitchen.
<</en>>
</div>
<<else>>
<<say "hero" `($lang == "ru" ? "Да ничего особенного. Рутина." : "Nothing special. Just the usual routine.")`>>
<</if>>
<div class="msg-box-autor">
<<ru>>
Вдруг в тишине дома раздался громкий, настойчивый звонок в дверь.
<br><br>
Вы с $wifeName переглянулись. Сегодня вы никого не ждали.
<</ru>>
<<en>>
Suddenly, a loud, persistent ring at the door echoes through the quiet house.
<br><br>
You and $wifeName exchange a look. You weren't expecting anyone today.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Кто это может быть так рано?" : "Who could that be so early?")`>>
<div class="msg-box-autor">
<<ru>>
Вы оба подошли к домофону, подключённому к камере на воротах. На экране стояла незнакомая женщина лет тридцати. Стройная, со светлыми волосами, собранными в аккуратный хвост, в скромной, но опрятной одежде.
<</ru>>
<<en>>
You both walk over to the intercom connected to the gate camera. An unfamiliar woman in her thirties stands on the screen. Slender, with blonde hair in a neat ponytail, and wore modest but neat clothes.
<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Да? Кто это?" : "Yes? Who is it?")`>>
<div class="msg-box-autor">
<<ru>>
Женщина слегка улыбнулась в камеру и ответила приятным, спокойным голосом:
<</ru>>
<<en>>
The woman smiles slightly at the camera and replies in a pleasant, calm voice:
<</en>>
</div>
<<say "unknown" `($lang == "ru" ? "Здравствуйте, мистер $playerName? Извините, что так рано. Я прибыла, как только смогла... Я ваша новая домработница. Меня зовут Ванесса." : "Hello, Mr. $playerName? I'm sorry for being so early. I arrived as soon as I could... I'm your new housekeeper. My name is Vanessa.")`>>
<div id="choice-area">
<<link `($lang == "ru" ? "Впустить ее" : "Let her in")` "end">>
<<audio "bgm_freeroom" volume 0 fadein loop>>\
<</link>>
</div>
<</nobr>><<nobr>>\
<<updateWorld>>
<img src="data/location/backyard.webp" class="scene-img" width="500">
<div class="msg-box-autor">
<<ru>>Ухоженный задний двор с аккуратно подстриженным газоном. У небольшого бассейна стоят удобные шезлонги, а в воздухе разносится стрекот цикад.<</ru>>
<<en>>A well-kept backyard with a neatly trimmed lawn. There are comfortable loungers by a small pool, and the sound of cicadas fills the air.<</en>>
</div>
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
<<if $wfriendLoc == passage()>>
<<ru>>$wifeName и Джессика лежат в шезлонгах, лениво переговариваясь. Рядом на столике стоят бокалы с чем-то освежающим.<</ru>>
<<en>>$wifeName and Jessica are reclining in the loungers, chatting lazily. There are glasses with something refreshing on the table nearby.<</en>>
<img src="data/images/act1/backyardgirls.webp" class="scene-img" width="700">
<<else>>
<<ru>>$wifeName сидит на краю шезлонга, глядя на закат. Она выглядит очень расслабленной и, кажется, наслаждается одиночеством.<</ru>>
<<en>>$wifeName is sitting on the edge of a lounger, watching the sunset. She looks very relaxed and seems to be enjoying her solitude.<</en>>
<</if>>
</div>
<</if>>
<div id="choice-area">
<<if $wifeLoc == passage() && $wfriendLoc == passage()>>
<hr>
<<link `($lang == "ru" ? "Присоединиться к их беседе" : "Join their conversation")`>>
<<set $_eventTriggered = false>>
<<include "backyard_events_logic">>
<<if !$_eventTriggered>>
<<goto "event_backyard_girls">>
<</if>>
<</link>>
<</if>>
</div>
<<roomMenu>>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<img src="data/location/cabinet.webp" class="scene-img" width="500">
<div class="msg-box-autor">
<<ru>>
<<if $pIndex == 0>>
В кабинете светло и свежо. Солнце вовсю светит в окно, и работать в такое время приятнее всего. На столе стоит пустая чашка из-под кофе.
<<elseif $pIndex == 1>>
В комнате довольно жарко, поэтому жалюзи пришлось закрыть. В полумраке только тихо гудит системный блок, а воздух кажется немного спертым.
<<elseif $pIndex == 2>>
Свет в комнате стал мягким и желтоватым. За окном начинает темнеть, и тени от мебели становятся длинными. Самое время заканчивать дела.
<<else>>
В кабинете темно, светится только экран монитора. Тишина такая, что слышно каждый шорох в коридоре. Весь дом уже спит, и здесь чувствуешь себя отрезанным от всех.
<</if>>
<br><br>
У стены стоит большой шкаф с папками и книгами. На рабочем столе небольшой бардак из бумаг, но ты в нем легко ориентируешься.
<</ru>>
<<en>>
<<if $pIndex == 0>>
The office is bright and fresh. The sun is shining right through the window, making it the best time to work. There's an empty coffee cup on the desk.
<<elseif $pIndex == 1>>
It’s pretty hot in the room, so the blinds have to stay closed. In the dim light, you can only hear the quiet hum of the PC, and the air feels a bit stuffy.
<<elseif $pIndex == 2>>
The light in the room has turned soft and yellowish. It’s getting dark outside, and the shadows from the furniture are growing long. Time to wrap things up.
<<else>>
The office is dark; only the monitor screen provides any light. It’s so quiet that you can hear every little sound from the hallway. The whole house is asleep, and you feel cut off from everyone here.
<</if>>
<br><br>
There's a large cabinet with folders and books against the wall. The desk is a bit messy with papers, but you can easily find your way around them.
<</en>>
</div>
<<roomMenu>>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<<if $pIndex == 3>>
<<goto "free_exithouse">>
<</if>>
<img src="data/location/gym_inside.webp" class="scene-img" width="500">
<<ru>>
<div class="msg-box-autor">
Современный фитнес-центр. Зал наполнен ритмичной музыкой и звуками тренажеров. Воздух здесь пропитан духом дисциплины и упорной работы над собой.
</div>
/* ПРОВЕРКА ПЕРСОНАЖЕЙ */
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
Ты замечаешь $wifeName на одном из тренажеров. На ней облегающая спортивная форма, а волосы собраны в высокий хвост. Она полностью сосредоточена на упражнении.
</div>
<<elseif $secLoc == passage()>>
<div class="msg-box-autor">
В углу зала, у свободных весов, ты видишь Хлою. Она выглядит на удивление бодро для выходного дня и технично выполняет подход.
</div>
<<else>>
<div class="msg-box-autor">
В зале довольно много людей, но знакомых лиц не видно. Все заняты своими тренировками.
</div>
<</if>>
<</ru>>
<<en>>
<div class="msg-box-autor">
A modern fitness center. The gym is filled with rhythmic music and the sound of workout machines. The air is thick with the spirit of discipline and hard work.
</div>
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
You notice $wifeName on one of the machines. She's wearing tight athletic gear, her hair tied in a high ponytail. She's completely focused on her exercise.
</div>
<<elseif $secLoc == passage()>>
<div class="msg-box-autor">
In the corner of the gym, by the free weights, you see Chloe. She looks surprisingly energetic for a weekend and is technically performing a set.
</div>
<</if>>
<</en>>
/* <div id="choice-area">
<<if $wifeLoc == passage()>>
<<link `($lang == "ru" ? "Подойти к $wifeName" : "Approach $wifeName")` "event_gym_wife">><</link>>
<<link `($lang == "ru" ? "Наблюдать со стороны" : "Watch from afar")` "gym">>
<<replace ".msg-box-autor:last">>
<br><br><b><<print ($lang == "ru" ? "Ты некоторое время любуешься её грациозными движениями." : "You admire her graceful movements for a while.")>></b>
<</replace>>
<</link>>
<<elseif $secLoc == passage()>>
<<link `($lang == "ru" ? "Заговорить с Хлоей" : "Talk to Chloe")` "event_gym_chloe">><</link>>
<</if>>
<<link `($lang == "ru" ? "Потренироваться" : "Workout")` "gym">>
<<nextPhase>>
<</link>>
</div> */
<div class="navigation-container">
<div class="room-grid">
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_exithouse')">
<img src="data/location/city_day.webp">
<div class="room-label"><<print ($lang == "ru" ? "Вернуться на карту" : "Back to Map")>></div>
</div>
</div>
</div>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<<if $pIndex == 3>>
<<goto "free_exithouse">>
<</if>>
<img src="data/location/lingerie.webp" class="scene-img" width="500">
<<ru>>
<div class="msg-box-autor">
Бутик нижнего белья встретил тебя приглушенным светом и ароматом дорогого кружева. Мужчины здесь обычно чувствуют себя немного не в своей тарелке.
</div>
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
Эмили и Джессика что-то оживленно обсуждают возле примерочных. Джессика держит в руках какой-то очень смелый комплект из красного шелка. Мартин предусмотрительно остался ждать их снаружи бутика.
</div>
<</if>>
<</ru>>
<<en>>
<div class="msg-box-autor">
The lingerie boutique welcomed you with dimmed lights and the scent of expensive lace.
</div>
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
Emily and Jessica are lively discussing something near the fitting rooms. Martin prudently stayed outside.
</div>
<</if>>
<</en>>
/* <div id="choice-area">
<<if $wifeLoc == passage()>>
<<link `($lang == "ru" ? "Оценить выбор Джессики" : "Evaluate Jessica's choice")` "event_mall_lingerie_show">><</link>>
<<link `($lang == "ru" ? "Предложить $wifeName примерить что-то" : "Suggest $wifeName to try something on")` "event_mall_lingerie_wife">><</link>>
<</if>>
<<link `($lang == "ru" ? "Скучающе бродить вдоль витрин" : "Bored walking along the windows")` "free_mall_lingerie">>
<<nextPhase>>
<</link>>
</div> */
<div class="navigation-container">
<div class="room-grid">
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_mall')">
<img src="data/location/mall.webp">
<div class="room-label"><<print ($lang == "ru" ? "Вернуться" : "Go back")>></div>
</div>
/* </div> */
</div>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<<if $pIndex == 3>>
<<goto "free_exithouse">>
<</if>>
<img src="data/location/clothes.webp" class="scene-img" width="500">
<<ru>>
<div class="msg-box-autor">
Яркие витрины, бесконечные ряды вешалок и тихая фоновая музыка. Магазин одежды заполнен покупателями, ищущими что-то особенное.
</div>
/* ПРОВЕРКА КОМПАНИИ */
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
Ты замечаешь $wifeName и Джессику у стоек с новыми платьями. Мартин стоит чуть поодаль, с обреченным видом держа в руках несколько вешалок. Кажется, его сегодня назначили «носителем сумок».
</div>
<<else>>
<div class="msg-box-autor">
Ты бродишь между рядами мужской одежды, но ничего интересного не находишь. Знакомых лиц здесь нет.
</div>
<</if>>
<</ru>>
<<en>>
<div class="msg-box-autor">
Bright windows, endless rows of hangers, and quiet background music. The clothing store is filled with shoppers.
</div>
<<if $wifeLoc == passage()>>
<div class="msg-box-autor">
You notice $wifeName and Jessica by the racks with new dresses. Martin is standing a bit further away, looking doomed while holding several hangers.
</div>
<</if>>
<</en>>
<div id="choice-area">
<<if $wifeLoc == passage()>>
<<link `($lang == "ru" ? "Подойти к компании" : "Approach the group")`>>
<<set $_eventTriggered = false>>
<<include "mall_clothes_events_logic">>
<<if !$_eventTriggered>>
<<goto "event_mall_clothes">>
<</if>>
<</link>>
<</if>>
</div>
<div class="navigation-container">
<div class="room-grid">
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_mall')">
<img src="data/location/mall.webp">
<div class="room-label"><<print ($lang == "ru" ? "Вернуться" : "Go back")>></div>
</div>
</div>
<</nobr>>\<<nobr>>\
<<say "hero" `($lang == "ru" ? "Хочешь взять всё в свои руки? Давай... покажи, как тебе нравится." : "Want to take charge? Go ahead... show me how you like it.")`>>
<div class="msg-box-autor">
<<ru>>Она уверенно забирается сверху и разворачивается к тебе спиной, будто специально дразнит. Твои руки сами ложатся на её бедра, сжимая сильнее, чем нужно, задавая ритм.
С каждым движением она становится смелее — её дыхание сбивается, движения теряют аккуратность, превращаясь в жадные, почти нетерпеливые.<</ru>>
<<en>>She straddles you with confidence, turning around to tease you. Your hands sink into her hips, squeezing harder than they should as you dictate the pace. She gets bolder with every stroke — her breath breaks, and her movements grow wild and desperate, driven by pure, hungry impatience.<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Чёрт... не останавливайся... мне этого уже мало..." : "God... don’t stop... I need more...")`>>
<video src="data/video/act1/freeroom/wifereversecow.mp4" class="scene-video" playsinline autoplay muted loop controls></video>
<<if $wifeLick>>
<<if $wifeSub <= 70>>
<div class="msg-box-autor">
<<ru>>
$wifeName резко замедляется, её движения становятся тяжелее. Она сползает вниз к твоему лицу и замирает, оставляя пару сантиметров между ним и своей почти капающей киской.
<</ru>>
<<en>>
$wifeName slows down abruptly, her movements becoming heavier. She slides down toward your face and freezes, leaving just a few inches between you and her soaking wet cunt.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "И чего же ты ждешь, дорогой $playerName? Десерт прямо перед тобой, пока не съешь меня мы не продолжим." : "And what are you waiting for, dear $playerName? Dessert is right in front of you, and we won't continue until you eat me up.")`>>
<div class="msg-box-autor">
<<ru>>
На ее лице растягивается хитрая улыбка.
<br>Она ожидает, как хищник ожидает добычу, когда ты поднимешь свою голову и начнешь делать то, что <b>она хочет</b>.
<</ru>>
<<en>>
A sly smile spreads across her face.
<br>Like a predator stalking its prey, she waits for you to lift your head and start doing exactly what <b>she wants</b>.
<</en>>
</div>
<div class="msg-box-autor">
<<ru>>
Как только ты собираешься что-то ответить, $wifeName обрушивается почти всем своим весом на твое лицо, теперь на сто процентов уничтожая все твои попытки сопротивления.
<</ru>>
<<en>>
Just as you’re about to say something, $wifeName collapses almost her entire weight onto your face, completely crushing any lingering attempts at resistance.
<</en>>
</div>
<<include "lick_event_bedroom">>
<<else>>
<div class="msg-box-autor">
<<ru>>
$wifeName постепенно замедляется, её движения становятся тяжелее. Она оборачивается через плечо — губы влажные, взгляд затуманен, но в нём появляется новая, почти игривая идея.
<</ru>>
<<en>>
$wifeName gradually slows down, her movements growing heavier. She looks back over her shoulder — her lips are slick, her gaze clouded with pleasure, but a new, almost playful idea flickers in her eyes.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Подожди... я хочу попробовать кое-что другое. Ты даже не представляешь, о чём я подумала..." : "Hold on... I want to try something different. You can't even imagine what I'm thinking of right now...")`>>
<div id="choice-area1">
<<button `($lang == "ru" ? "Посмотреть, что она задумала" : "See what she's up to")`>>
<<run setup.updateStat("wifeSub", -2, 70, 90)>>
<<replace "#choice-area1" t8n>><<include "lick_event_bedroom">><</replace>>
<</button>>
<<button `($lang == "ru" ? "Кончить" : "Finish / Cum")`>>
<<replace "#choice-area1" t8n>><<include "end_event_bedroom">><</replace>>
<</button>>
</div>
<</if>>
<<else>>
<<include "end_event_bedroom">>
<</if>>
<</nobr>>\<<audio "bgm_freeroom" fadeout>>\
<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Тишина спальни нарушается лишь сбившимся дыханием. $wifeName медленно поднимается на колени, её взгляд становится тяжелым, почти голодным, её глаза блестят в лунном свете.
<</ru>>
<<en>>
The silence of the bedroom is broken only by ragged breathing. $wifeName slowly rises to her knees; her gaze grows heavy, almost hungry, her eyes glistening in the moonlight.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Я весь день об этом думала... о том, как ты будешь чувствоваться у меня во рту. Не заставляй меня ждать." : "I’ve been thinking about this all day... about how you’ll feel in my mouth. Don’t make me wait.")`>>
<div class="msg-box-autor">
<<ru>>
Она нежно обхватывает твой член, пробуя его кончиком языка, прежде чем полностью погрузить его в свой горячий рот. Её навыки заставляют тебя теряться от удовольствия.
<</ru>>
<<en>>
She gently wraps her lips around you, teasing with the tip of her tongue before taking you deep into her warm mouth. Her skill makes you lose yourself in pleasure.
<</en>>
</div>
<video src="data/video/act1/freeroom/wifebj.mp4" class="scene-video" playsinline autoplay muted loop controls></video>
<div class="msg-box-autor">
<<ru>>
$wifeName отстраняется, губы влажно блестят, дыхание сбито. Она смотрит на тебя снизу вверх — и в этом взгляде уже нет прежней мягкости.
<</ru>>
<<en>>
$wifeName pulls away, her lips glistening with moisture, her breathing ragged. She looks up at you from below — and that former softness is gone from her gaze.
<</en>>
</div>
<<if $wifeRide>>
<<if $wifeSub <= 75>>
<<say "wife" `($lang == "ru" ? "Знаешь... сегодня я сама задам темп. Просто лежи и смотри." : "You know... I'm setting the pace tonight. Just lie back and watch.")`>>
<<include "ride_event_bedroom">>
<<else>>
<<say "wife" `($lang == "ru" ? "Знаешь... я хочу сверху. Хочу сама задать темп... и посмотреть, как ты будешь реагировать." : "You know... I feel like being on top tonight. I want to take control of the rhythm... and watch your every reaction.")`>>
<div id="choice-area">
<<button `($lang == "ru" ? "Позволить ей" : "Let her be on top")`>>
<<run setup.updateStat("wifeSub", -1, 70, 90)>>
<<replace "#choice-area" t8n>><<include "ride_event_bedroom">><</replace>>
<</button>>
<<button `($lang == "ru" ? "Заняться обычным сексом" : "Have regular sex")`>>
<<run setup.updateStat("wifeSub", +1, 70, 90)>>
<<replace "#choice-area" t8n>><<include "doggy_event_bedroom">><</replace>>
<</button>>
</div>
<</if>>
<<else>>
<<include "doggy_event_bedroom">>
<</if>>
<</nobr>>\<<nobr>>\
<<say "hero" `($lang == "ru" ? "Дорогая, прости, но сегодня я хочу тебя сзади." : "Forgive me, babe, but I really want to take you from behind tonight.")`>>
<div class="msg-box-autor">
<<ru>>
Ты не даёшь ей времени ответить — твои руки уже ложатся ей на бедра. Резким, уверенным движением ты разворачиваешь её, заставляя опереться на кровать.
Она тихо выдыхает, когда ты удерживаешь её на месте, не давая выпрямиться.
Ты входишь в неё сразу, без лишних прелюдий — глубже, чем она ожидает. Кровать начинает скрипеть под ритмом твоих движений, а её дыхание сбивается, переходя в короткие, прерывистые вздохи.
<</ru>>
<<en>>
You don’t give her time to answer — your hands are already on her hips. With a sharp, confident motion, you turn her around, forcing her to lean against the bed. She lets out a soft gasp as you hold her in place, pinning her down. You enter her at once, without further foreplay — deeper than she expects. The bed begins to creak in time with your rhythm, and her breathing hitches, turning into short, ragged gasps.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Мм... вот так... не останавливайся..." : "Mm... just like that... don't stop...")`>>
<video src="data/video/act1/freeroom/wifedoggy.mp4" class="scene-video" playsinline autoplay muted loop controls></video>
<<include "end_event_bedroom">>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Ты чувствуешь, как пульсирует её плоть вокруг тебя. Ты останавливаешься и оказываешься сверху над ее лицом и грудью, извеграя все свое накопившееся семя, прямо на ее мягкую, покрытую потом кожу.
<</ru>>
<<en>>
You can feel her flesh pulsing around you. You pull out and move over her face and chest, spilling all your accumulated seed directly onto her soft, sweat-slicked skin.
<</en>>
</div>
<video src="data/video/act1/freeroom/wifecum.mp4" class="scene-video" playsinline autoplay muted loop controls></video>
<div class="msg-box-autor">
<<ru>>
Вы лежите в тишине, сплетясь телами. Кожа ещё влажная от пота, но на душе полное умиротворение. Завтра будет новый день, но эта ночь принадлежит только вам.
<</ru>>
<<en>>
You lie in silence, bodies entwined. Your skin is still damp with sweat, but you feel a sense of total peace. Tomorrow is a new day, but tonight belongs only to the two of you.
<</en>>
</div>
<div id="choice-area">
<<link `($lang == "ru" ? "Заснуть до утра" : "Fall asleep until morning")` "free_bedroom">>
<<skipToMorning>>
<<audio "bgm_freeroom" volume 0.5 fadein>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<<if $wifeSub > 70>>
<<say "hero" `($lang == "ru" ? "Хочешь меня удивить? Давай, покажи..." : "You want to surprise me? Go on...")`>>
<div class="msg-box-autor">
<<ru>>Но в этот раз всё происходит иначе.
Она даже не спрашивает. Резким движением прижимает тебя к кровати, заставляя лечь ровнее. В её действиях нет ни капли прежней мягкости — только уверенность.
$wifeName перекидывает ногу через тебя и опускается ниже, полностью перекрывая тебе обзор. Ты оказываешься лицом под ее капающей киской, почти без возможности отстраниться.<</ru>>
<<en>>$wifeName straddles you and sinks lower, cutting off your vision entirely. You're pinned face-first under her soaking wet cunt, with no chance of escape.<</en>>
</div>
<<else>>
<<say "wife" `($lang == "ru" ? "Тише. Просто делай, как я хочу. И не останавливайся." : "Quiet. Just do exactly what I want. And don’t stop.")`>>
<</if>>
<video src="data/video/act1/freeroom/wifefacesit.mp4" class="scene-video" playsinline autoplay muted loop controls></video>
<div class="msg-box-autor">
<<ru>>
Она двигается так, будто полностью забывает о тебе — как будто сейчас для неё важны только собственные ощущения.
Ты чувствуешь, как ритм задаёшь уже не ты. И чем дальше, тем меньше у тебя остаётся контроля над происходящим.
Когда она резко поднимается, тебе даже не дают передышки.
Она сразу приземляется обратно на твое лицо — уверенно, почти жадно, снова подчиняя тебя своему темпу.
<</ru>>
<<en>>
She’s moving as if she's lost in herself, as if only her own pleasure exists.
You realize you're no longer the one dictating the rhythm. Control is slipping away with every passing second.
She rises sharply, giving you no chance to catch your breath, only to drop back down onto your face.
She’s relentless and hungry, forcing you to submit to her tempo once more.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Вот так... теперь не мешай мне." : "That’s better... now don’t get in my way.")`>>
<div class="msg-box-autor">
<<ru>>
Её движения становятся всё быстрее, дыхание сбивается, пальцы впиваются в твоё тело. По её голосу и тому, как она двигается, ты понимаешь — она уже на грани.
Но в самый последний момент…
Она резко замирает.
Тишина обрушивается внезапно, будто кто-то оборвал ритм. Ты не успеваешь даже понять, что происходит, как она приподнимается — и в следующую секунду снова оказывается сверху.
Без предупреждения. Без вопросов.
$wifeName резко опускается на твой член, заставляя тебя выдохнуть от неожиданности. Её движения сразу становятся быстрыми, жадными, почти неконтролируемыми.
Она сама задаёт темп — резкий, требовательный, не оставляющий тебе ни шанса перехватить инициативу.
<</ru>>
<<en>>
Her movements quicken, her breath hitches, and her fingers dig into your skin. From the sound of her voice and the way she moves, you can tell she’s right on the edge. But at the very last second… she freezes.
Silence falls abruptly, as if the rhythm has been severed. Before you can even process what’s happening, she rises — and in the next heartbeat, she’s on top of you again.
No warning. No questions. $wifeName drops onto your member with a sudden force that knocks the wind out of you. Her movements are immediate — fast, greedy, and almost primal. She sets the pace herself — sharp, demanding, leaving you no chance to reclaim control.
<</en>>
</div>
<video src="data/video/act1/freeroom/wifecowgirl.mp4" class="scene-video" playsinline autoplay muted loop controls></video>
<<say "wife" `($lang == "ru" ? "Пока не кончай... я сама решу, когда. Просто лежи... и не мешай." : "Don’t cum yet... I’ll decide when. Just lie there... and don’t get in my way.")`>>
<<include "end_event_bedroom">>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>> Солнце нещадно палит, и воздух на заднем дворе кажется вязким от жары. Подойдя ближе к бассейну, ты замечаешь $wifeName и Джессику — они нежатся в шезлонгах, лениво потягивая яркие коктейли. Ты присаживаешься на обычный стул рядом. Из-за разницы в высоте ты чувствуешь себя почти как проситель у их ног. До тебя долетают обрывки их разговора. Голос Джесс звучит самоуверенно и даже поучительно: <</ru>>
<<en>> The sun is merciless, and the air in the backyard feels thick with heat. As you approach the pool, you notice $wifeName and Jessica — they are lounging in the sunbeds, lazily sipping bright cocktails. You pull up a regular chair nearby. Due to the height difference, you feel almost like a supplicant at their feet. Fragments of their conversation drift toward you. Jessica’s voice sounds confident, almost instructional: <</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Ты даже не представляешь, насколько проще жить, когда мужчина знает своё место. Никаких споров... никаких лишних разговоров." : "You have no idea how much easier life is when a man knows his place. No arguments... no unnecessary talk.")`>>
<div class="msg-box-autor">
<<ru>> Заметив тебя, Джесс мгновенно замолкает. Она медленно поправляет солнечные очки, и на её губах играет многозначительная улыбка. Во взгляде, скользнувшем по тебе сверху вниз, читается не просто вызов — оценка. Как будто она уже прикидывает, насколько далеко сможет зайти. <</ru>>
<<en>> Noticing you, Jess goes quiet at once. She readjusts her sunglasses with a slow, lingering motion, a smirk touching her lips. As her eyes scan you from head to toe, you see more than a challenge; you see her evaluating you. It's as though she’s already weighing up exactly how much she can get away with. <</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "О, а вот и наш герой. Присаживайся, если не боишься перегреться под нашим присмотром." : "Oh, and here is our hero. Have a seat, if you're not afraid of overheating under our watch.")`>>
<img src="data/images/act1/wfriendpool.webp" class="scene-img" width="700">
<div class="msg-box-autor">
<<ru>> Проходит время. Разговор течёт неспешно, прерываясь колкостями Джесс в твой адрес. Наконец, лёд с сухим стуком ударяется о дно их пустых бокалов. $wifeName, заметно нервничая под взглядом подруги, поворачивается к ней. <</ru>>
<<en>> Time passes. The conversation flows slowly, punctuated by Jess's sharp jabs at your expense. Finally, ice clinks dryly against the bottom of their empty glasses. $wifeName, visibly nervous under her friend’s gaze, turns to her. <</en>>
</div>
<<say "wife" `($lang == "ru" ? "Джесс, коктейли закончились. Может, сходим на кухню за добавкой?" : "Jess, the cocktails are finished. Maybe we should go to the kitchen for a refill?")`>>
<div class="msg-box-autor">
<<ru>> Джессика на пару секунд задумывается, потягиваясь в шезлонге, и бросает на тебя долгий, изучающий взгляд. Затем она властным и чувственным жестом притягивает $wifeName к себе и что-то шепчет ей прямо в ухо. Ты успеваешь разобрать лишь короткую фразу:
<<if $helpedJessicaShoes>>
<b>«...сейчас самое время посмотреть, насколько он послушный. Ты же видела, как быстро он тогда оказался у моих ног...».</b>
<<else>>
<b>«...сейчас самое время посмотреть, насколько он послушный».</b>
<</if>>
<br> $wifeName заметно напрягается. Она пытается улыбнуться, но выходит неуверенно. Её взгляд на мгновение задерживается на тебе — будто она ищет в тебе поддержки или, наоборот, проверяет, готов ли ты к тому, что она собирается сказать. <</ru>>
<<en>> Jessica thinks for a couple of seconds, stretching out on the lounger, and gives you a long, studying look. Then she pulls $wifeName close with a commanding and sensual gesture and whispers something in her ear. You catch only a brief phrase:
<<if $helpedJessicaShoes>>
<b>"...now is the perfect time to see how obedient he is. You saw yourself how quickly he ended up at my feet back then...".</b>
<<else>>
<b>"...now is the perfect time to see how obedient he is."</b>
<</if>>
<br> $wifeName visibly tenses up. She tries to smile, but it comes out uncertainly. Her gaze lingers on you for a moment, as if she's looking for support or, on the contrary, checking if you're ready for what she's about to say. <</en>> </div>
<div class="msg-box-autor">
<<ru>>
$wifeName медлит. Её пальцы сжимаются на краю бокала чуть сильнее, чем нужно. Видно, что она колеблется… но под взглядом Джесс это колебание быстро тает.
<</ru>>
<<en>>
$wifeName hesitates. Her fingers tighten around the rim of her glass a bit harder than necessary. It’s clear she’s wavering… but under Jessica’s gaze, that hesitation quickly melts away.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Милый... принеси нам ещё по одной, хорошо? Не заставляй нас вставать... Джесс права... тебе это несложно." : "Honey... bring us another round, okay? Don't make us get up... Jess is right... it’s not hard for you.")`>>
<img src="data/images/act1/wifepool.webp" class="scene-img" width="700">
<div id="choice-area">
<<button `($lang == "ru" ? "Сходить за напитками" : "Go get drinks")`>>
<<set $wifeSub -= 5>>
<<set $wfriendInfluence += 3>>
<<set $wifeSuggestibility += 3>>
<<set $mcWillpower -= 3>>
<<set $mcSC -= 3>>
<<replace "#choice-area" t8n>><<include "backyard_servant_path">><</replace>>
<</button>>
<<button `($lang == "ru" ? "Попросить $wifeName сходить" : "Ask $wifeName to go")`>>
<<set $wifeSub += 5>>
<<set $wifeLove -= 3>>
<<set $wfriendInfluence -= 3>>
<<set $wifeSuggestibility -= 3>>
<<set $mcWillpower += 2>>
<<set $mcSC += 2>>
<<replace "#choice-area" t8n>>
<<include "backyard_refuse_path">>
<</replace>>
<</button>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Ты молча поднимаешься со стула. В этот момент тишина на заднем дворе становится почти осязаемой. Ты чувствуешь на себе два взгляда: один — виноватый и просящий у $wifeName, другой — обжигающий и торжествующий у Джесс.
<br>
Пока ты идешь к дому, чувствуешь, как они смотрят тебе вслед. Тихий смешок Джессики доносится до тебя вместе с порывом горячего ветра. Ты возвращаешься через несколько минут, неся два запотевших бокала.
<</ru>>
<<en>>
You rise from your chair in silence. In that moment, the quiet in the backyard becomes almost palpable. You feel two pairs of eyes on you: one — $wifeName’s, guilty and pleading; the other — Jessica’s, searing and triumphant.
<br>
As you walk toward the house, you can feel them watching your back. Jessica’s low chuckle reaches you, carried by a cold gust of hot wind. You return a few minutes later, carrying two frosted glasses.
<</en>>
</div>
<div class="msg-box-autor">
<<ru>>
Когда ты подходишь к шезлонгам, Джесс даже не шевелится, чтобы облегчить тебе задачу. Она лишь чуть сдвигает колени, освобождая место для бокала на столике рядом, и смотрит на тебя снизу вверх — как на официанта, который заставил её слишком долго ждать.
<</ru>>
<<en>>
As you approach the sunbeds, Jess doesn't move an inch to make it easier for you. She only slightly shifts her knees, clearing space for the glass on the side table, looking up at you from below — like a waitress looking at a busboy who kept her waiting too long.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "О, ты был быстрее, чем я думала. Хороший мальчик. Видишь, $wifeName? Я же говорила — ему это только в радость." : "Oh, you were faster than I thought. Good boy. See, $wifeName? I told you — he actually enjoys this.")`>>
<div class="msg-box-autor">
<<ru>>
$wifeName принимает свой бокал, стараясь не соприкасаться с твоими пальцами. Её щеки всё ещё горят. Она делает глоток, но её глаза прикованы к Джесс, которая демонстративно облизывает каплю влаги с губ, не сводя с тебя глаз.
<</ru>>
<<en>>
$wifeName takes her glass, careful not to let her fingers brush against yours. Her cheeks are still flushed. She takes a sip, but her eyes are locked on Jess, who provocatively licks a stray drop of moisture from her lip, never breaking eye contact with you.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "С-спасибо... детка." : "Th-thanks... baby.")`>>
<div class="msg-box-autor">
<<ru>>
В этот момент ты понимаешь: принеся эти напитки, ты принёс им не просто алкоголь. Ты принёс им подтверждение того, что Джесс начинает чувствовать себя увереннее в твоем доме и жизни. И твоя жена начинает это принимать.
<</ru>>
<<en>>
In that moment, you realize: by fetching these drinks, you brought them more than just alcohol. You brought them confirmation that Jess is starting to feel more confident in your house and your life. And your wife is beginning to accept it.
<</en>>
</div>
<div class="msg-box-autor">
<<ru>>
Ты возвращаешься на свой стул. После всего произошедшего это место ощущается иначе.
<br>Не как случайность.
<br>Как выбор, который ты только что сделал.
<br><br>
Спустя время Джесс начинает собираться домой. Она поднимается, потягиваясь всем телом, и подходит к $wifeName. Она обнимает твою жену — нежно, но при этом властно, задерживаясь в этом объятии чуть дольше, чем того требует простая вежливость.
<</ru>>
<<en>>
You return to your chair. After everything that happened, this place feels different.
<br>Not like an accident.
<br>Like a choice you just made.
<br><br>
After a while, Jess begins to get ready to head home. She stands up, stretching her entire body, and approaches $wifeName. She embraces your wife—tenderly, yet possessively, lingering in the hug a bit longer than simple politeness requires.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Пока, дорогая. Это был чудесный день." : "Bye, darling. It’s been a wonderful day.")`>>
<div class="msg-box-autor">
<<ru>>
Джесс оборачивается к тебе. На мгновение она замирает, будто раздумывая, какой тон выбрать. Её взгляд становится наполовину мягким, наполовину суровым.
<</ru>>
<<en>>
Jess turns to you. For a moment she pauses, as if weighing which tone to use. Her gaze turns half-sweet, half-stern.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "И тебе до встречи... мальчик на побегушках." : "And goodbye to you... errand boy.")`>>
<div class="msg-box-autor">
<<ru>>
Она произносит это почти буднично. Как будто это уже не шутка.
<br>Она замирает с лукавой улыбкой, явно ожидая твоей реакции на эту дерзость.
<</ru>>
<<en>>
She says it almost casually. As if it's no longer a joke.
<br>She lingers with a playful smirk, clearly waiting for your reaction to her audacity.
<</en>>
</div>
<img src="data/images/act1/wfriendsmile.webp" class="scene-img" width="700">
<div id="final-choice">
<<button `($lang == "ru" ? "Не называй меня так" : "Don't call me that")`>>
<<set $mcSC += 5>>
<<set $mcWillpower += 2>>
<<set $wfriendAudacity -= 5>>
<<replace "#final-choice" t8n>>
<<say "hero" `($lang == "ru" ? "Не стоит меня так называть. Я всего лишь помог вам отдохнуть, не более." : "You shouldn't call me that. I was just helping you both relax, nothing more.")`>>
<div class="msg-box-autor">
<<ru>>Джесс слегка поджимает губы, выглядя разочарованной, но в её глазах всё равно искрится азарт.<</ru>>
<<en>>Jess purses her lips slightly, looking disappointed, but the spark of excitement still flickers in her eyes.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Эх, ничего... в таком случае мы продолжим так отдыхать и дальше, пока твой лед окончательно не растает." : "Oh well... in that case, we'll just have to keep relaxing like this until your ice finally melts away.")`>>
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "free_backyard">>
<<nextPhase>>
<<set $backyardServant = true>>
<<set $backyardEventStage = 1>>
<</link>>
<</replace>>
<</button>>
<<button `($lang == "ru" ? "Просто попрощаться" : "Just say goodbye")`>>
<<set $mcSC -= 3>>
<<set $wfriendAudacity += 5>>
<<replace "#final-choice" t8n>>
<div class="msg-box-autor">
<<ru>>Джесс расплывается в широкой улыбке. Твоё молчание для неё — это знак того, что ты готов принимать от неё любые слова. Она подходит ближе, почти касаясь твоего плеча, и шепчет так, чтобы слышал только ты:<</ru>>
<<en>>Jess breaks into a broad grin. To her, your silence is a sign that you're ready to accept any words she throws at you. She steps closer, almost brushing your shoulder, and whispers so that only you can hear:<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Мне нравится, как ты ведешь себя, когда <b>Я</b> рядом с вами. До скорой встречи." : "I like how you behave when <b>I AM</b> around you two. See you soon.")`>>
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "free_backyard">>
<<nextPhase>>
<<set $backyardServant = true>>
<<set $backyardEventStage = 1>>
<</link>>
<</replace>>
<</button>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Ты качаешь головой, сохраняя спокойствие, хотя чувствуешь, как внутри закипает глухое раздражение. Ты не собираешься играть в прислугу на глазах у Джесс.
<</ru>>
<<en>>
You shake your head, maintaining your composure despite the dull irritation simmering inside. You have no intention of playing the servant in front of Jess.
<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Милая, я только присел. Думаю, вам с Джесс не составит труда сходить вместе... или ты можешь принести нам всем по одной." : "Honey, I just sat down. I think you and Jess could easily go together... or you could just grab a round for all of us.")`>>
<div class="msg-box-autor">
<<ru>>
$wifeName на мгновение замирает. Она бросает быстрый, почти испуганный взгляд на подругу, ожидая едкого комментария, но Джесс лишь загадочно улыбается.
<br><br>
— Хорошо... я сейчас, — тихо отвечает жена. Она поднимается, поправляя купальник, и медленно уходит к дому. Как только дверь террасы за ней закрывается, атмосфера на заднем дворе меняется. Тишина становится тяжелой.
<</ru>>
<<en>>
$wifeName pauses for a moment. She shoots a quick, almost fearful look at her friend, bracing for a sharp comment, but Jess only smiles enigmatically.
<br><br>
"Fine... I'll be right back," your wife answers quietly. She stands up, adjusting her swimsuit, and slowly heads toward the house. As soon as the terrace door closes behind her, the atmosphere in the backyard shifts. The silence grows heavy.
<</en>>
</div>
<div class="msg-box-autor">
<<ru>>
Джессика медленно снимает очки. Теперь между вами нет посредника. Она не отводит взгляд, и в её глазах больше нет той ленивой расслабленности — только острый, как бритва, интерес. Она медленно выпрямляется в шезлонге, намеренно сокращая дистанцию.
<</ru>>
<<en>>
Jessica slowly takes off her glasses. Now, there is no buffer between you. She doesn't look away, and the lazy relaxation is gone from her eyes—replaced by an interest as sharp as a razor. She slowly sits up in her sunbed, intentionally closing the distance.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Ого... решил показать характер? Интересно. Жаль только, что это работает, пока она рядом." : "Oh... showing some spine? Interesting. Shame it only works when she’s around.")`>>
<div class="msg-box-autor">
<<ru>>
Она подается вперед, опираясь локтями на колени. Ты чувствуешь тонкий аромат её парфюма, смешанный с запахом хлорки из бассейна.
<</ru>>
<<en>>
She leans forward, resting her elbows on her knees. You catch the faint scent of her perfume mixed with the smell of chlorine from the pool.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Знаешь, что самое забавное? Она послушалась тебя только потому, что Я ей позволила. Мне было интересно посмотреть, как ты будешь пытаться сохранить лицо." : "You know what’s funny? She only obeyed you because I let her. I wanted to see how you'd try to save face.")`>>
<div class="msg-box-autor">
<<ru>>
Она смотрит на тебя, не моргая.
<br>Ждёт.
<br>И, кажется, ей одинаково интересен любой твой ответ.
<</ru>>
<<en>>
She watches you without blinking.
<br>Waiting.
<br>And it seems she’s equally interested in whatever answer you give.
<</en>>
</div>
<div id="choice-area">
<<button `($lang == "ru" ? "Игнорировать её провокацию" : "Ignore her provocation")`>>
<<set $wfriendInfluence += 3>>
<<set $wfriendAudacity += 3>>
<<goto "backyard_jess_pressure">>
<</button>>
<<button `($lang == "ru" ? "Ответить жестко" : "Answer firmly")`>>
<<set $wfriendInfluence -= 3>>
<<set $wfriendAudacity -= 3>>
<<set $mcSC += 3>>
<<set $mcWillpower += 2>>
<<goto "backyard_jess_confrontation">>
<</button>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Ты решаешь ничего не отвечать. Ты просто смотришь сквозь неё, стараясь сохранить маску безразличия. Но Джесс это не задевает — наоборот, она расплывается в довольной, почти кошачьей улыбке.
<br><br>
Она медленно встает со своего шезлонга. В тишине пустого двора звук её шагов по плитке кажется неестественно громким. Она делает круг вокруг твоего стула, намеренно заходя тебе за спину, Теперь ты не видишь её.
<br>И именно это делает ситуацию хуже.
<</ru>>
<<en>>
You decide not to answer. You simply look through her, trying to maintain a mask of indifference. But this doesn't offend Jess—on the contrary, she breaks into a satisfied, almost feline smile.
<br><br>
She slowly rises from her sunbed. In the silence of the empty yard, the sound of her footsteps on the tiles feels unnaturally loud. She circles your chair, intentionally stepping behind you. Now, you can't see her.
<br>And that’s exactly what makes the situation worse.
<</en>>
</div>
<div class="msg-box-autor">
<<ru>>
Ты чувствуешь, как она наклоняется к твоему затылку. Ты не видишь её, но кожей ощущаешь жар, исходящий от её тела после солнца. Её голос звучит прямо у твоего уха, тихий и вкрадчивый.
<</ru>>
<<en>>
You feel her lean in toward the back of your head. You can't see her, but your skin feels the heat radiating from her body after the sun. Her voice sounds right at your ear, low and insidious.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Молчание... это тоже выбор. Ты думаешь, что так ты сохраняешь контроль? Нет, милый. Ты просто затаился, как зверек в клетке, надеясь, что я пройду мимо." : "Silence... that’s a choice too. You think you’re staying in control this way? No, honey. You’re just hunkering down like a caged animal, hoping I’ll walk past.")`>>
<img src="data/images/act1/wfriendconf.webp" class="scene-img" width="700">
<div class="msg-box-autor">
<<ru>>
Она на мгновение кладет ладони тебе на плечи. Её пальцы холодные от ледяного коктейля, и этот контраст с твоей разгоряченной кожей заставляет тебя невольно вздрогнуть.
<</ru>>
<<en>>
She rests her palms on your shoulders for a fleeting moment. Her fingers are cold from the icy cocktail, and the contrast with your heated skin makes you flinch involuntarily.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Не бойся. Мне даже интереснее, когда ты сопротивляешься. Это значит, что процесс займет чуть больше времени... но результат будет тем же." : "Don’t worry. I actually prefer it when you resist. It just means it’ll take a little longer... but the result will be the same.")`>>
<div class="msg-box-autor">
<<ru>>
Слышится щелчок замка — $wifeName возвращается с подносом. Джесс мгновенно отстраняется и возвращается к своему шезлонгу с такой легкостью, будто последние полминуты тебе просто привиделись.
<br><br>
Когда жена подходит, Джесс уже снова лениво щурится на солнце, но её взгляд, брошенный на тебя напоследок, говорит яснее слов: **«Игра только началась»**.
<</ru>>
<<en>>
The click of the lock is heard—$wifeName is returning with a tray. Jess pulls away instantly and retreats to her sunbed with such ease, it's as if the last thirty seconds were just a figment of your imagination.
<br><br>
By the time your wife approaches, Jess is already lazily squinting at the sun again, but the final look she darts at you says clearer than words: **"The game has only just begun."**
<</en>>
</div>
<div id="choice-area">
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "free_backyard">>
<<set $backyardEventStage = 1>>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Ты не отводишь взгляда. Твой голос звучит твердо, разрезая густую тишину двора. Ты даешь ей понять, что её игры здесь не пройдут.
<</ru>>
<<en>>
You don't look away. Your voice rings out firm, cutting through the thick silence of the yard. You let her know that her games won't work here.
<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Тебе стоит сбавить обороты, Джесс. Ты в гостях. И то, что Эмили добра к тебе, не значит, что ты можешь распоряжаться в этом доме." : "You should tone it down, Jess. You're a guest. Just because Emily is kind to you doesn't mean you can run things in this house.")`>>
<div class="msg-box-autor">
<<ru>>
На мгновение её маска самоуверенности трескается. Улыбка исчезает, а взгляд становится холодным и колючим. Она не привыкла, чтобы ей указывали на место, особенно те, кого она уже мысленно «приручила».
<br><br>
Она медленно выпрямляется, скрещивая руки на груди. Напряжение между вами можно почти потрогать руками.
<</ru>>
<<en>>
For a moment, her mask of self-confidence cracks. The smile vanishes, and her gaze turns cold and prickly. She isn't used to being put in her place, especially by those she’s already "tamed" in her mind.
<br><br>
She slowly straightens up, crossing her arms over her chest. The tension between you is almost palpable.
<</en>>
</div>
<img src="data/images/act1/wfriendconf.webp" class="scene-img" width="700">
<<say "wfriend" `($lang == "ru" ? "О... как официально. Значит, теперь мы играем в «хозяина дома»? Забавно. Ты так отчаянно пытаешься очертить границы, потому что боишься, что я их уже перешла." : "Oh... how formal. So we're playing 'master of the house' now? Amusing. You're trying so hard to draw boundaries because you're afraid I've already crossed them.")`>>
<div class="msg-box-autor">
<<ru>>
Она прищуривается, и в её глазах вспыхивает опасный огонек. Она не отступает. Вместо этого она делает шаг к тебе, вторгаясь в твое личное пространство.
<</ru>>
<<en>>
She narrows her eyes, and a dangerous spark flickers within them. She doesn't back down. Instead, she takes a step toward you, invading your personal space.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Ты можешь говорить что угодно, но мы оба видели, как ты смотрел, когда я заставила тебя принести коктейли в прошлый раз. Твои слова говорят одно, а твои глаза... совсем другое." : "You can say whatever you want, but we both saw how you looked when I made you fetch drinks last time. Your words say one thing, but your eyes... they say something else entirely.")`>>
<div class="msg-box-autor">
<<ru>>
Дверь террасы открывается, и выходит $wifeName с подносом. Она мгновенно чувствует ледяную атмосферу и замирает на пороге, переводя взгляд с тебя на Джесс.
<br><br>
Джесс тут же меняет выражение лица на беззаботное, но её голос, обращенный к тебе, звучит как предупреждение:
<br><b>— Мы еще не договорили, «хозяин».</b>
<</ru>>
<<en>>
The terrace door opens, and $wifeName steps out with the tray. She immediately senses the icy atmosphere and freezes at the threshold, glancing between you and Jess.
<br><br>
Jess instantly shifts her expression to a carefree one, but her voice, directed at you, sounds like a warning:
<br><b>"We're not done talking yet, 'Master'."</b>
<</en>>
</div>
<div id="choice-area">
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "free_backyard">>
<<set $backyardEventStage = 1>>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Ты подходишь к дивану и присаживаешься с краю — рядом с Джессикой.
Сразу бросается в глаза одна деталь: она и $wifeName сидят слишком близко друг к другу. Почти вплотную. Колени соприкасаются, бокалы вина держатся небрежно, разговор идёт тихий, почти интимный.
Твоё появление на секунду прерывает их.
<</ru>>
<<en>>
You walk up to the sofa and sit down on the edge — right next to Jessica.
One detail immediately stands out: she and $wifeName are sitting far too close for a casual evening. Almost pressed together. Knees touching, wine glasses held loosely, their conversation low and intimate.
Your presence interrupts them for a brief moment.
<</en>>
</div>
<!-- РЕАКЦИЯ ДЖЕСС (зависит от дерзости) -->
<<if $wfriendAudacity >= 6>>
<<say "wfriend" `($lang == "ru" ? "О, смотрите-ка, кто решил к нам присоединиться. А мы уж думали, ты боишься подходить, когда взрослые разговаривают." : "Oh look who decided to join us. We thought you were too shy to approach when adults are talking.")`>>
<!-- ОТВЕТ ГЕРОЯ (уверенность) -->
<<if $mcSC >= 75>>
<div class="msg-box-autor">
<<ru>>
Ты спокойно выдерживаешь её взгляд, не спеша отвечать.
<</ru>>
<<en>>
You calmly hold her gaze, taking your time before replying.
<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Зависит от того, о чём вы тут шепчетесь." : "Depends on what you're whispering about.")`>>
<<else>>
<div class="msg-box-autor">
<<ru>>
Ты лишь слегка пожимаешь плечами, стараясь не заострять внимание на её тоне.
<</ru>>
<<en>>
You shrug lightly, trying not to dwell on her tone.
<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Да просто решил составить вам компанию." : "Just thought I'd join you.")`>>
<</if>>
<!-- РЕАКЦИЯ ЖЕНЫ -->
<<if $wifeLove >= 96 and $wifeSuggestibility < 5>>
<div class="msg-box-autor">
<<ru>>
$wifeName слегка хмурится и бросает на Джесс быстрый взгляд.
<</ru>>
<<en>>
$wifeName frowns slightly and glances at Jess.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Джесс, хватит." : "Jess, that's enough.")`>>
<<elseif $wifeSuggestibility >= 5>>
<div class="msg-box-autor">
<<ru>>
$wifeName тихо усмехается, опуская взгляд в бокал.
Похоже, слова Джесс её скорее забавляют, чем смущают.
<</ru>>
<<en>>
$wifeName lets out a quiet laugh, lowering her gaze to her glass.
Jess’s words seem to amuse her more than embarrass her.
<</en>>
</div>
<<else>>
<div class="msg-box-autor">
<<ru>>
$wifeName переводит взгляд с тебя на Джесс, явно не зная, как реагировать.
Она ничего не говорит, лишь делает глоток вина.
<</ru>>
<<en>>
$wifeName looks between you and Jess, unsure how to react.
She says nothing, just takes a sip of her wine.
<</en>>
</div>
<</if>>
<<else>>
<<say "wfriend" `($lang == "ru" ? "О, привет. Присоединишься к нам?" : "Oh, hi. Care to join us?")`>>
<div class="msg-box-autor">
<<ru>>Ты киваешь, чувствуя, что напряжения почти нет.<</ru>>
<<en>>You nod, sensing little to no tension.<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Почему бы и нет." : "Why not.")`>>
<div class="msg-box-autor">
<<ru>>
$wifeName улыбается чуть теплее, чем раньше, явно довольная, что всё проходит спокойно.
<</ru>>
<<en>>
$wifeName smiles a little warmer, clearly glad things remain calm.
<</en>>
</div>
<</if>>
<div class="msg-box-autor">
<<ru>>
Вечер постепенно подходит к концу. $wifeName бросает взгляд на часы и начинает нехотя подниматься с дивана.
<</ru>>
<<en>>
The evening is slowly drawing to a close. $wifeName glances at the clock and begins to reluctantly get up from the sofa.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Ох, уже поздно... Мне еще нужно набрать ванну, прибраться на кухне после ужина и подготовить вещи на завтра. Джесс, дорогая, мне пора.. " : "Oh, it's getting late... I still need to draw a bath, tidy up the kitchen after dinner, and get my clothes ready for tomorrow. Jess, dear, I really should...")`>>
<div class="msg-box-autor">
<<ru>>
Джессика не шевелится. Она лишь медленно переводит взгляд на твою жену. В этом взгляде нет агрессии, но в нем чувствуется такая тяжелая, обволакивающая власть, от этого $wifeName мгновенно замолкает, прерывая фразу на полуслове.
<</ru>>
<<en>>
Jessica doesn't move. She just slowly looks at your wife. There's no aggression in her gaze, but it exudes a heavy, enveloping power that silences $wifeName mid-sentence.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Да ладно тебе, дорогая..." : "Oh, come on, dear...")`>>
<div class="msg-box-autor">
<<ru>>Джесс нежно, почти интимно берет её за руку и тянет обратно на диван.<</ru>>
<<en>>Jess gently, almost intimately, takes her hand and pulls her back onto the sofa.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Давай еще немного посидим, нам столько нужно обсудить. А наш дорогой <b>гость</b> ведь не откажется немного позаботиться о тебе." : "Let's stay a bit longer, we have so much to discuss. And I'm sure our dear <b>guest</b> won't mind taking care of things for you.")`>>
<div class="msg-box-autor">
<<ru>>Джессика переводит взгляд на тебя, и на её губах играет торжествующая улыбка. Она ждет реакции.<</ru>>
<<en>>Jessica turns her gaze to you, a triumphant smirk playing on her lips. She’s waiting for a reaction.<</en>>
</div>
<<if $wifeSub <= 70 and $wifeSuggestibility >= 10>>
<div class="msg-box-autor">
<<ru>>
$wifeName на мгновение замирает, глядя в глаза подруге. Её сопротивление тает на глазах. Она выпрямляется и смотрит на тебя холодным, властным взглядом, который ей явно несвойственен.
<</ru>>
<<en>>
$wifeName freezes for a moment, looking into her friend's eyes. Her resistance melts away. She straightens up and looks at you with a cold, commanding gaze that is clearly uncharacteristic of her.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Знаешь... Джесс права. Нам тоже нужно иногда расслабляться. Так что, $playerName, сделай это для меня. И... постарайся побыстрее." : "You know... Jess is right. We need to relax sometimes too. So, $playerName, do this for me. And... try not to take too long.")`>>
<<else>>
<div class="msg-box-autor">
<<ru>>
$wifeName выглядит растерянной. Она переводит взгляд с Джесс на тебя, явно чувствуя неловкость от такого предложения, но не решаясь перечить подруге.
<</ru>>
<<en>>
$wifeName looks confused. She looks from Jess to you, clearly feeling awkward about the suggestion but not daring to contradict her friend.
<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Милый... ты не мог бы правда помочь мне с этим? Мне бы очень хотелось посидеть еще пять минут с Джесс, а дел накопилось много..." : "Honey... could you actually help me with that? I'd really love to sit with Jess for five more minutes, and there's so much to do...")`>>
<</if>>
<div id="choice-area">
<<link `($lang == "ru" ? "Молча встать и пойти выполнять поручения" : "Silently get up and go fulfill the requests")`>>
<<set $wifeSub -= 5>>
<<set $wfriendInfluence += 3>>
<<set $mcWillpower -= 3>>
<<set $mcSC -= 3>>
<<replace "#choice-area">>
<div class="msg-box-autor">
<<ru>>Ты молча поднимаешься. За спиной ты слышишь тихий, победный смешок Джессики и приглушенный шепот твоей жены. Ты чувствуешь, как твоё влияние в этом доме медленно утекает сквозь пальцы.
<</ru>>
<<en>>You get up without a word. Behind your back, you hear Jessica's quiet, triumphant chuckle and your wife's muffled whisper. You feel your influence in this house slowly slipping through your fingers.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Вот и умница." : "That's better.")`>>
<<link `($lang == "ru" ? "Завершить вечер" : "End the evening")` "free_livingroom">>
<<set $livingroomServant = true>>
<<set $livingRoomEventStage = 1>>
<<nextPhase>>
<</link>>
<</replace>>
<</link>>
<<link `($lang == "ru" ? "Предложить альтернативу" : "Suggest an alternative")`>>
<<set $mcSC += 3>>
<<set $mcWillpower += 2>>
<<set $wfriendInfluence -= 5>>
<<set $wifeSuggestibility -= 3>>
<<replace "#choice-area">>
<div class="msg-box-autor">
<<ru>>Ты спокойно отвечаешь, что не против помочь жене, но сделаешь это, когда вы все вместе закончите вечер. Улыбка Джесс на мгновение меркнет — ей не удалось прогнуть тебя так легко.<</ru>>
<<en>>You calmly reply that you don't mind helping your wife, but you'll do it once the evening is over for everyone. Jess's smile flickers for a moment — she failed to bend you so easily.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Как скажешь." : "Suit yourself.")`>>
<<link `($lang == "ru" ? "Завершить вечер" : "End the evening")` "free_livingroom">>
<<set $livingRoomEventStage = 1>>
<<nextPhase>>
<</link>>
<</replace>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Ты заходишь в магазин одежды и вскоре замечаешь знакомые силуэты.
<br>$wifeName, Джесс и Мартин стоят у стойки с одеждой, обсуждая что-то вполголоса. Ты подходишь к ним и вы вчетвером проводите время за покупками.
<</ru>>
<<en>>
You enter the clothing store and soon notice familiar figures.
<br>$wifeName, Jess, and Martin are standing near a rack, talking quietly. You approach them, and the four of you spend some time shopping.
<</en>>
</div>
<div id="choice-area">
<<link `($lang == "ru" ? "Обратно в магазин" : "Back to the mall")` "free_mall_clothes">>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Ты заходишь в магазин одежды и вскоре замечаешь знакомые силуэты.
<br>$wifeName, Джесс и Мартин стоят у стойки с одеждой, обсуждая что-то вполголоса. Ты подходишь ближе.
<</ru>>
<<en>>
You enter the clothing store and soon notice familiar figures.
<br>$wifeName, Jess, and Martin are standing near a rack, talking quietly. You walk up to them.
<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Привет всем." : "Hey.")`>>
<<say "wife" `($lang == "ru" ? "Привет, детка." : "Hey, baby.")`>>
<!-- РЕАКЦИЯ ДЖЕСС -->
<<if $wfriendAudacity >= 6>>
<<say "wfriend" `($lang == "ru" ? "О. И ты здесь. Забавно… я как раз думала, появишься ли ты или снова оставишь всё решаться без тебя." : "Oh. You're here. Funny… I was just wondering if you'd show up or let everything be decided without you again.")`>>
<div class="msg-box-autor">
<<ru>>Она окидывает тебя коротким оценивающим взглядом и едва заметно усмехается.<</ru>>
<<en>>She gives you a brief, measuring look and smirks faintly.<</en>>
</div>
<<else>>
<<say "wfriend" `($lang == "ru" ? "О, привет! Присоединяйся." : "Oh, hi! Join us.")`>>
<</if>>
<<say "friend" `($lang == "ru" ? "Привет, дружище." : "Hey, man.")`>>
<div class="msg-box-autor">
<<ru>>
Вы проводите некоторое время вместе, переходя от одной витрины к другой. Разговоры то затихают, то оживляются, но ты всё чаще замечаешь, что инициатива исходит от Джесс.
<</ru>>
<<en>>
You spend some time together, moving from one section to another. The conversation fades in and out, but you notice more and more that Jess is the one leading it.
<</en>>
</div>
<div class="msg-box-autor">
<<ru>>
В какой-то момент вы останавливаетесь передохнуть.
Разговор неожиданно сворачивает в более личную сторону.
<</ru>>
<<en>>
At some point, you pause to rest.
The conversation unexpectedly drifts into more personal territory.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Знаешь, я вообще не понимаю, как можно всё время оставаться в одной и той же роли в сексе." : "You know, I don't understand how you can stay in the same role in sex all the time.")`>>
<<say "friend" `($lang == "ru" ? "Мне кстати нравится, когда Джесс берет инициативу на себя." : "I actually like it when Jess takes the lead.")`>>
<div class="msg-box-autor">
<<ru>>
$wifeName слегка вздрагивает от неожиданности и опускает взгляд.
<</ru>>
<<en>>
$wifeName shifts slightly, caught off guard, lowering her gaze.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Подожди… ты ведь даже не пробовала ничего подобного, да?" : "Wait… you've never even tried anything like that, have you?")`>>
<div class="msg-box-autor">
<<ru>>
$wifeName заметно краснеет и слегка качает головой.
<</ru>>
<<en>>
$wifeName blushes and shakes her head slightly.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Ну это же скучно. Иногда нужно просто взять ситуацию в свои руки." : "That's just boring. Sometimes you have to take control of the situation.")`>>
<<say "wfriend" `($lang == "ru" ? "Начни с малого. Просто попробуй быть чуть увереннее." : "Start small. Just try being a bit more assertive.")`>>
<<say "hero" `($lang == "ru" ? "Главное, чтобы обоим было комфортно." : "As long as both are comfortable with it.")`>>
<div class="msg-box-autor">
<<ru>>
Спустя некоторое время вы заканчиваете покупки и направляетесь к выходу.
Ты замечаешь, что у Джесс почти нет вещей — все пакеты несет Мартин.
У $wifeName в руках лишь небольшая сумочка и один пакет.
Ты же несешь два довольно тяжелых пакета.
<</ru>>
<<en>>
After a while, you finish shopping and head toward the exit.
You notice Jess carries almost nothing — Martin holds all the bags.
$wifeName has only a small bag and a light package.
Meanwhile, you're carrying two fairly heavy ones.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Подожди-ка…" : "Hold on a second…")`>>
<div class="msg-box-autor">
<<ru>>
Она останавливается и переводит взгляд на $wifeName.
<</ru>>
<<en>>
She stops and looks at $wifeName.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Ты зачем сама это несешь? Отдай ему." : "Why are you carrying that yourself? Give it to him.")`>>
<<if $wifeSuggestibility >= 10>>
<<say "wife" `($lang == "ru" ? "А… ну да, ты права." : "Oh… You're right.")`>>
<<else>>
<div class="msg-box-autor">
<<ru>>
$wifeName на секунду колеблется, глядя на тебя.
<</ru>>
<<en>>
$wifeName hesitates for a moment, looking at you.
<</en>>
</div>
<</if>>
<div id="choice-area">
<<link `($lang == "ru" ? "Взять пакет у жены" : "Take her bag")`>>
<<set $wfriendInfluence += 2>>
<<set $wifeSuggestibility += 1>>
<<replace "#choice-area">>
<div class="msg-box-autor">
<<ru>>
Ты берешь пакет из её рук. Теперь весь вес сосредоточен у тебя.
<</ru>>
<<en>>
You take the bag from her hands. Now all the weight is on you.
<</en>>
</div>
<div id="choice-area">
<<link `($lang == "ru" ? "Отправиться домой" : "Go to home")` "free_livingroom">>
<<nextPhase>>
<<set $wifeRide = true>>
<<set $mallClothesEventStage = 1>>
<</link>>
</div>
<</replace>>
<</link>>
<<link `($lang == "ru" ? "Забрать все вещи" : "Take everything")`>>
<<set $wfriendInfluence += 3>>
<<set $wifeSuggestibility += 3>>
<<set $mcWillpower -= 3>>
<<set $mcSC -= 2>>
<<replace "#choice-area">>
<div class="msg-box-autor">
<<ru>>
Ты молча забираешь у неё всё. Джесс довольно улыбается.
<</ru>>
<<en>>
You silently take everything from her. Jess smiles with satisfaction.
<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Вот теперь всё выглядит правильно." : "Now this looks right.")`>>
<div id="choice-area">
<<link `($lang == "ru" ? "Отправиться домой" : "Go to home")` "free_livingroom">>
<<nextPhase>>
<<set $wifeRide = true>>
<<set $mallClothesEventStage = 1>>
<</link>>
</div>
<</replace>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>> Солнце нещадно палит, и воздух на заднем дворе кажется вязким от жары. Подойдя ближе к бассейну, ты замечаешь $wifeName и Джессику — они нежатся в шезлонгах, лениво потягивая яркие коктейли. Ты присаживаешься на обычный стул рядом и под глотки алкоголя с веселыми разговорами проводишь некоторое время. <</ru>>
<<en>> The sun is merciless, and the air in the backyard feels thick with heat. As you approach the pool, you notice $wifeName and Jessica — they are lounging in the sunbeds, lazily sipping bright cocktails. You pull up a regular chair nearby and spend some time chatting and sipping your drinks.<</en>>
</div>
<div id="choice-area">
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "free_backyard">>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Ты подходишь к дивану и присаживаешься с краю — рядом с Джессикой.
Сразу бросается в глаза одна деталь: она и $wifeName сидят слишком близко друг к другу. Почти вплотную. Колени соприкасаются, бокалы вина держатся небрежно, разговор идёт тихий, почти интимный.
<br>Ты подсаживаешься к ним и вы проводите вечер вместе перед экраном телевизора.
<</ru>>
<<en>>
You walk up to the sofa and sit down on the edge — right next to Jessica.
One detail immediately stands out: she and $wifeName are sitting far too close for a casual evening. Almost pressed together. Knees touching, wine glasses held loosely, their conversation low and intimate.
<br>You sit down with them, and you spend the evening together in front of the TV.
<</en>>
</div>
<img src="data/location/threesometv.webp" class="scene-img">
<div id="choice-area">
<<link `($lang == "ru" ? "Завершить вечер" : "End the evening")` "free_livingroom">>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<img src="data/location/my_office.webp" class="scene-img" width="500">
<div id="office-status-container">
<div class="msg-box-autor">
<<if $wdIndex == 5 or $wdIndex == 6>>
<<ru>>
Сегодня выходной, и здание практически вымерло. В офисе стоит непривычная, мертвая тишина. Даже гул вентиляции кажется громче, чем обычно. Воздух застоявшийся, и работать в такой обстановке совершенно не тянет — мысли постоянно улетают к отдыху.
<</ru>>
<<en>>
It's the weekend, and the building is practically deserted. There's an unusual, dead silence in the office. Even the hum of the ventilation seems louder than usual. The air is stale, and there's absolutely no motivation to work in such an environment — your thoughts constantly drift toward relaxation.
<</en>>
<<else>>
<<ru>>
<<if $pIndex == 0>>
В кабинете светло и свежо. Солнце вовсю светит в окно, и работать в такое время приятнее всего. На столе еще стоит пустая чашка из-под кофе.
<<elseif $pIndex == 1>>
В комнате довольно жарко, поэтому жалюзи пришлось закрыть. В полумраке тихо гудит системный блок, а воздух кажется немного спертым.
<<elseif $pIndex == 2>>
Свет в комнате стал мягким и желтоватым. За окном начинает темнеть, и тени от мебели становятся длинными. Самое время заканчивать дела.
<<else>>
В кабинете темно, светится только экран монитора. Тишина такая, что слышно каждый шорох в коридоре.
<</if>>
<</ru>>
<<en>>
<<if $pIndex == 0>>
The office is bright and fresh. The sun is shining through the window, making it the best time to work.
<<elseif $pIndex == 1>>
It's pretty hot, so the blinds are closed. In the dim light, you can hear the quiet hum of the PC.
<<elseif $pIndex == 2>>
The light has turned soft and yellowish. It's getting dark outside. Time to wrap things up.
<<else>>
The office is dark; only the monitor provides light. It’s so quiet here.
<</if>>
<</en>>
<</if>>
</div>
</div>
<div id="office-status-container"></div>
<div id="choice-area">
<<if $pIndex != 3 and $wdIndex != 5 and $wdIndex != 6>>
<hr>
<<link `($lang == "ru" ? "Заняться работой" : "Get to work")`>>
<<set $isWorkedToday = true>>
<<nextPhase>>
<<set $_eventTriggered = false>>
<<include "office_events_logic">>
<<if !$_eventTriggered>>
<<run $(".navigation-container").hide()>>
<<set _workRu = either(
"Ты погружаешься в цифры и отчеты. Время летит незаметно.",
"Телефонные звонки и таблицы забирают все силы, но проект сдвинулся.",
"Ты анализируешь графики. Рутинная, но прибыльная работа.",
"Голова гудит от планирования, но кошелек стал тяжелее."
)>>
<<set _workEn = either(
"You dive into numbers and reports. Time flies by.",
"Phone calls and spreadsheets take all your energy, but the project is moving.",
"You spend several hours analyzing charts. Routine but profitable.",
"The entire time is spent on planning. Your head is spinning, but your wallet is heavier."
)>>
<<replace "#office-status-container">>
<div class="msg-box-autor">
<b><<ru>>_workRu<</ru>><<en>>_workEn<</en>></b>
</div>
<</replace>>
<<replace "#choice-area">>
<<link `($lang == "ru" ? "Закончить" : "Finish")` "office_my_room">><</link>>
<</replace>>
<</if>>
<</link>>
<</if>>
</div>
<div class="navigation-container">
<div class="room-grid">
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_office')">
<img src="data/location/office.webp">
<div class="room-label">
<<print ($lang == "ru" ? "Вернуться" : "Go back")>>
</div>
</div>
</div>
</div>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<img src="data/location/reception.webp" class="scene-img" width="500">
<div id="reception-status-container">
<div class="msg-box-autor">
<<if $wdIndex == 5 or $wdIndex == 6>>
<<ru>>Приемная пуста. Рабочий стол Хлои аккуратно прибран, компьютер выключен. В выходные здесь стоит непривычная тишина.<</ru>>
<<en>>The reception is empty. Chloe's desk is tidy, and her computer is off. There's an unusual silence on weekends.<</en>>
<<else>>
<<if $pIndex == 0>>
<<ru>>В приемной кипит жизнь. Утреннее солнце заливает холл, а Хлоя выглядит свежей и бодрой, попивая свой латте.<</ru>>
<<en>>The reception is full of life. Morning sun floods the hall. Chloe looks fresh and alert, sipping her latte.<</en>>
<<elseif $pIndex == 1>>
<<ru>>Разгар дня. Хлоя сидит за столом, лениво листая ленту в телефоне. Кондиционер едва справляется с жарой.<</ru>>
<<en>>The peak of the day. Chloe is at her desk, lazily scrolling through her phone. The AC is barely fighting the heat.<</en>>
<<elseif $pIndex == 2>>
<<ru>>Свет в приемной стал мягким и золотистым. Хлоя уже поглядывает на часы, явно дожидаясь конца рабочего дня.<</ru>>
<<en>>The light has turned soft and golden. Chloe is already glancing at her watch, clearly waiting for the day to end.<</en>>
<<else>>
<<ru>>В приемной темно, горит лишь настольная лампа. Хлоя уже ушла, оставив после себя лишь едва уловимый аромат парфюма.<</ru>>
<<en>>The reception is dark, only a desk lamp is lit. Chloe has already left, leaving behind the faint scent of her perfume.<</en>>
<</if>>
<</if>>
</div>
</div>
<<if $wdIndex != 5 and $wdIndex != 6>>
<<if $pIndex == 0>>
<<say "sec" `($lang == "ru" ? "Доброе утро, мистер $playerName! Вам что-нибудь нужно?" : "Good morning, Mr. $playerName! Do you need anything?")`>>
<<elseif $pIndex == 1>>
<<say "sec" `($lang == "ru" ? "А, мистер $playerName... Вам что-нибудь нужно?" : "Ah, Mr. $playerName... Do you need anything?")`>>
<<elseif $pIndex == 2>>
<<say "sec" `($lang == "ru" ? "Мистер $playerName? Хотите чего-нибудь перед уходом?" : "Mr. $playerName? Would you like anything before you leave?")`>>
<</if>>
<</if>>
<div class="navigation-container">
<div class="room-grid">
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_office')">
<img src="data/location/office.webp">
<div class="room-label"><<print ($lang == "ru" ? "Вернуться" : "Go back")>></div>
</div>
</div>
<</nobr>>\<<nobr>>\
<<updateWorld>>
<img src="data/location/financial.webp" class="scene-img" width="500">
<div id="finance-status-container">
<div class="msg-box-autor">
<<if $wdIndex == 5 or $wdIndex == 6>>
<<ru>>
Финансовый отдел замер. Ряды пустых столов, выключенные мониторы и стопки бумаг, ожидающие понедельника. В воздухе пахнет типографской краской и озоном от принтеров. Кабинет Грейс за стеклянной перегородкой пуст, но на её столе идеальный порядок.
<</ru>>
<<en>>
The finance department is still. Rows of empty desks, dark monitors, and stacks of paperwork waiting for Monday. The air smells of printer ink and ozone. Grace's office behind the glass partition is empty, but her desk is in perfect order.
<</en>>
<<else>>
<<if $pIndex == 0>>
<<ru>>В отделе вовсю кипит работа: стрекочут принтеры, слышен стук клавиш. Грейс уже на месте, она сосредоточенно изучает отчеты, делая пометки в блокноте. Вид у неё максимально деловой.<</ru>>
<<en>>The department is buzzing: printers whirring, keys clicking. Grace is already there, focused on her reports and taking notes. She looks strictly professional.<</en>>
<<elseif $pIndex == 1>>
<<ru>>Обеденное затишье. Большинство сотрудников ушли, но Грейс всё еще за своим столом. Она массирует виски, глядя на бесконечные таблицы на мониторе. Кажется, цифры сегодня её утомили.<</ru>>
<<en>>Lunchtime lull. Most staff are out, but Grace is still at her desk. She’s rubbing her temples, staring at endless spreadsheets. It seems the numbers are wearing her down today.<</en>>
<<elseif $pIndex == 2>>
<<ru>>Рабочий день близится к концу. В отделе стало тише, свет приглушен. Грейс аккуратно складывает документы в папку. Она выглядит уставшей, но удовлетворенной проделанной работой.<</ru>>
<<en>>The workday is nearing its end. The department is quieter, the lights are dimmed. Grace is neatly filing away documents. She looks tired but satisfied with the work done.<</en>>
<<else>>
<<ru>>Фин отдел погружен во тьму. Светится только индикатор кофемашины и аварийный выход. Тишина здесь кажется особенно тяжелой, как будто стены давят грузом ответственности за бюджет компании.<</ru>>
<<en>>The finance department is shrouded in darkness. Only the coffee machine indicator and the exit sign are glowing. The silence here feels heavy, as if the walls are weighted with financial responsibility.<</en>>
<</if>>
<</if>>
</div>
</div>
<<if $wdIndex != 5 and $wdIndex != 6>>
<<if $pIndex == 0>>
<<say "fin" `($lang == "ru" ? "Доброе утро, мистер $playerName. Отчет по прибыли будет готов к полудню. У вас есть вопросы по бюджету?" : "Good morning, Mr. $playerName. The profit report will be ready by noon. Do you have any questions regarding the budget?")`>>
<<elseif $pIndex == 1>>
<<say "fin" `($lang == "ru" ? "А, $playerName... Цифры в этом квартале не очень радуют. Надеюсь, вы зашли с хорошими новостями?" : "Ah, $playerName... This quarter's numbers aren't looking great. I hope you're here with good news?")`>>
<<elseif $pIndex == 2>>
<<say "fin" `($lang == "ru" ? "Уже уходите? Я как раз заканчиваю сводку. Не забудьте подписать распоряжение завтра с утра." : "Leaving already? I’m just wrapping up the summary. Don't forget to sign the executive order tomorrow morning.")`>>
<</if>>
<</if>>
<div class="navigation-container">
<div class="room-grid">
<div class="room-card exit-card" onclick="SugarCube.Engine.play('free_office')">
<img src="data/location/office.webp">
<div class="room-label"><<print ($lang == "ru" ? "Вернуться" : "Go back")>></div>
</div>
</div>
<</nobr>>\<<nobr>>
<<set _ev = $events.office>>
<<if _ev.delay > 0>>
<<set _ev.delay-->>
<<set $_eventTriggered = false>>
<<else>>
<<switch _ev.stage>>
<<case 0>>
<<run setup.triggerEvent("office", 1, 4, "event_office_chloe_1")>>
<<set $_eventTriggered = true>>
<<case 1>>
<<run setup.triggerEvent("office", 2, 3, "event_office_chloe_2")>>
<<set $_eventTriggered = true>>
<<default>>
<<set $_eventTriggered = false>>
<</switch>>
<</if>>
<</nobr>><<nobr>>\
<div class="msg-box-autor">
<<ru>>
<b>Хлоя заглядывает в твой кабинет, держа в руках чашку ароматного кофе.</b>
Она улыбается и направляется к твоему столу.
<</ru>>
<<en>>
<b>Chloe peeks into your office, holding a cup of fragrant coffee.</b>
She smiles and heads towards your desk.
<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Здравствуйте, мистер $playerName, вижу вы совсем закопались в этих бумажных завалах. Решила, что вам не помешает небольшой перерыв." : "Hello, Mr. $playerName, I see you're completely buried under these piles of paperwork. I thought you could use a little break")`>>
<div class="msg-box-autor">
<<ru>>
Ты с улыбкой благодаришь её. Хлоя подходит ближе, чтобы поставить чашку на край стола. Когда она наклоняется, её юбка натягивается, и она едва заметно, но крайне сексуально виляет попкой прямо перед твоим лицом.
<br><br>
В этот момент нежный аромат её парфюма ударяет тебе в голову, и на мгновение разум затуманивается. Кажется, в этом офисе нет ничего прекраснее, чем твоя секретарша.
<br><br>
Ты быстро пытаешься отогнать лишние мысли и возвращаешь лицу деловое выражение, но Хлоя успевает заметить перемену в твоём взгляде. Она выпрямляется, ловит твой взор и, хитро улыбнувшись, шепчет прямо тебе на ухо:
<</ru>>
<<en>>
You thank her with a smile. Chloe comes closer to place the cup on the edge of the desk. As she leans over, her skirt tightens, and she gives a subtle but incredibly sexy wiggle of her hips right in front of you.
<br><br>
At that moment, the delicate scent of her perfume hits your senses, and for a second, your mind goes foggy. It seems there is nothing more beautiful in this office than your secretary.
<br><br>
You quickly try to shake off those thoughts and regain a professional look, but Chloe notices the change in your expression. She straightens up, catches your eye, and with a sly smile, whispers right in your ear:
<</en>>
</div>
<img src="data/images/act1/chloecoffee.webp" class="scene-img" width="500">
<<say "sec" `($lang == "ru" ? "Может быть... вам нужно немного больше внимания, босс?" : "Perhaps... do you need a little more attention, boss?")`>>
<div class="msg-box-autor">
<<ru>>
Ты лишь сдержанно качаешь головой, и она, коротко рассмеявшись, грациозной походкой выходит из кабинета, оставив после себя шлейф духов и легкое чувство недосказанности.
<</ru>>
<<en>>
You just shake your head slightly, and she chuckles softly, walking out of the office with a graceful stride, leaving behind a trail of perfume and a lingering sense of tension.
<</en>>
</div>
<div class="msg-box-autor">
<<ru>>
Спустя еще пару минут после закрытия двери ты сидишь в раздумьях. Ведут ли себя так секретарши в других офисах и с другими боссами. И вела ли она себя так с предыдущим владельцем, ведь если нет, то...
<</ru>>
<<en>>
A few minutes after the door closed, you sit there lost in thought. Do secretaries in other offices behave like this with other bosses? And did she act this way with the previous owner? Because if not, then...
<</en>>
</div>
<<say "hero" `($lang == "ru" ? "...почему со мной, и чего она на самом деле пытается добиться..." : "...why with me and what is she actually trying to achieve?")` "thought">>
<hr>
<div id="choice-area">
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "office_my_room">>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>
Вы сосредоточены на квартальном отчете, когда тишину кабинета бесцеремонно нарушает появление Хлои.
<<if $secAudacity >= 5>>
<b>Звук открывающейся двери. Ни стука, ни деликатной паузы. Хлоя входит так, словно этот кабинет принадлежит ей.</b> Она не произносит ни слова приветствия, ее каблуки хищно цокают по паркету. Остановившись у высокого шкафа, она грациозно потягивается, достает массивную папку и на ходу перелистывает страницы.
<<else>>
<b>Раздается быстрый стук в дверь и Хлоя быстро заходит, закрывая ее за собой.</b> В ее движениях сквозит нетерпение. Она быстро приветствует вас и сразу направляется к полкам с документацией, чтобы найти нужные ей документы.
<</if>>
<</ru>>
<<en>>
You are focused on the quarterly report when the office silence is rudely broken by Chloe's appearance.
<<if $secAudacity >= 5>>
<b>The sound of a door opening. No knock, no polite pause. Chloe walks in as if she owns the place.</b> She doesn't say a word of greeting; her heels click hungrily against the floor. Stopping by a tall cabinet, she stretches gracefully, pulls out a massive folder, and flips through the pages on the move.
<<else>>
<b>There's a quick knock on the door, and Chloe quickly enters, closing the door behind her..</b> Her movements betray a sense of impatience. She gives you a quick greeting and heads straight for the document shelves to find what she needs.
<</if>>
<</en>>
</div>
<div class="msg-box-autor">
<<ru>>
<b>Она подходит к столу и сдвигает ваши документы в сторону.</b> Папка ложится точно на их место — как будто так и должно быть.
Хлоя не просто наклоняется — она вторгается в пространство. Слишком близко. Ее голос звучит почти над самым ухом.
<</ru>>
<<en>>
<b>She steps up to your desk and pushes your papers aside.</b> The folder takes their place — as if it always belonged there.
Chloe doesn’t just lean in — she invades your space. Too close. Her voice is almost right next to your ear.
<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Нам нужно поговорить о дисциплине, мистер $playerName." : "We need to talk about discipline, Mr. $playerName.")`>>
<div class="msg-box-autor">
<<ru>>
Она открывает папку и разворачивает ее к тебе. На этот раз — медленно.
<</ru>>
<<en>>
She opens the folder and turns it toward you. This time — slower.
<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Корпоративная карта. Использование вне рабочих нужд. Бутики. Дорогая одежда. Парфюм. Ювелирка." : "Corporate card. Personal use. Boutiques. Designer clothing. Perfume. Jewelry.")`>>
<div class="msg-box-autor">
<<ru>>
Она постукивает своими длинными крассными ногтями по строкам.
<</ru>>
<<en>>
She taps her long red nails on the lines.
<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Странно... Слишком знакомые названия. Почти все — из нашего района." : "Strange... These names feel too familiar. Almost all of them are from our area.")` "thought">>
<<say "sec" `($lang == "ru" ? "Раз в несколько дней. Суммы разные — но всегда ниже порога автоматической обязательной проверки. И каждый раз — его подпись." : "The amounts vary, but they are always below the automatic mandatory check threshold. And every time — his authorization.")`>>
<div class="msg-box-autor">
<<ru>>
Она чуть выпрямляется, но не отходит. Все еще слишком близко. Как будто не дает тебе пространства подумать.
<</ru>>
<<en>>
She straightens slightly, but doesn’t step back. Still too close. Like she’s not giving you space to think.
<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Его нужно уволить сегодня. Без компенсации. Иначе с последующими клиентами мы будем договариваться с помощью дорогих духов и модных юбок." : "He needs to be terminated today. No severance. Otherwise, we'll use expensive perfumes and fashionable skirts to negotiate with our next clients.")`>>
<<say "sec" `($lang == "ru" ? "Я уже подготовила приказ." : "I’ve already prepared the order.")`>>
<<say "sec" `($lang == "ru" ? "Вам нужно только подписать, мистер $playerName." : "You just need to sign it, Mr. $playerName.")`>>
<div class="msg-box-autor">
<<ru>>Она разворачивает папку чуть ближе к тебе. На последней странице уже приклеен стикер - место для подписи отмечено.
<</ru>>
<<en>>
She opens the folder a little closer to you. There's already a sticky note on the last page, marking the spot for the signature.
<</en>>
</div>
<img src="data/images/act1/fired.webp" class="scene-img" width="600">
<div id="choice-area">
<<link `($lang == "ru" ? "Подписать приказ" : "Sign the order")`>>
<<set $secInfluence += 5>>
<<set $mcIq -= 3>>
<<set $mcWillpower -= 3>>
<<set $firedSteve = true>>
<<run $historyOfChoices.push({
ru: "Вы уволили Стива.",
en: "You fired Steve."
})>>
<<goto "Office_Choice_Fire">>
<</link>>
<<if $mcIq >= 115>>
<<link `($lang == "ru" ? "Я сам изучу эти цифры" : "I'll look at these numbers myself")`>>
<<set $mcIq += 3>>
<<set $mcWillpower += 3>>
<<goto "Office_Choice_Analyze">>
<</link>>
<<else>>
<div class="link-locked">
<<print ($lang == "ru" ? "Я сам изучу эти цифры" : "I'll look at these numbers myself")>>
</div>
<</if>>
<<if $secAudacity >= 5>>
<<if $mcSC >= 80>>
<<link `($lang == "ru" ? "Ты забыла постучать, Хлоя." : "You forgot to knock, Chloe.")`>>
<<set $secAudacity -= 3>>
<<set $mcSC += 2>>
<<replace "#choice-area" t8n>>
<<say "sec" `($lang == "ru" ? "Учту... Если для вас это принципиально — в следующий раз постучу." : "I'll keep that in mind... If it matters to you — I’ll knock next time.")`>>
<<say "hero" `($lang == "ru" ? "Хорошо, впредь будь внимательнее к таким деталям." : "Okay, pay more attention to such details in the future.")`>>
<div class="msg-box-autor">
<<ru>>Казалось бы, сейчас должна последовать фраза: "Извините, больше не повторится". Но единственное что ты слышишь и видишь - это ее холодное дыхание в полной тишине комнаты и развернутый к тебе приказ, который продолжает ждать решения.<</ru>>
<<en>>One would expect an apology: "Sorry, it won't happen again". Instead, there is only her cold breath in the silent room and the order on your desk, demanding a decision.<</en>>
</div>
<<link `($lang == "ru" ? "Подписать приказ" : "Sign the order")`>>
<<set $secInfluence += 5>>
<<set $mcIq -= 3>>
<<set $mcWillpower -= 3>>
<<set $firedSteve = true>>
<<run $historyOfChoices.push({
ru: "Вы уволили Стива.",
en: "You fired Steve."
})>>
<<goto "Office_Choice_Fire">>
<</link>>
<<if $mcIq >= 115>>
<<link `($lang == "ru" ? "Я сам изучу эти цифры" : "I'll look at these numbers myself")`>>
<<set $mcIq += 3>>
<<set $mcWillpower += 3>>
<<goto "Office_Choice_Analyze">>
<</link>>
<<else>>
<div class="link-locked">
<<print ($lang == "ru" ? "Я сам изучу эти цифры" : "I'll look at these numbers myself")>>
</div>
<</if>>
<</replace>>
<</link>>
<<else>>
<div class="link-locked">
<<print ($lang == "ru" ? "Ты забыла постучать, Хлоя" : "You forgot to knock, Chloe")>>
</div>
<</if>>
<</if>>
</div>
<</nobr>>\<<nobr>>
<<set _ev = $events.backyard>>
<<if _ev.delay > 0>>
<<set _ev.delay-->>
<<set $_eventTriggered = false>>
<<else>>
<<switch _ev.stage>>
<<case 0>>
<<run setup.triggerEvent("backyard", 1, 2, "event_backyard1_start")>>
<<set $_eventTriggered = true>>
<<default>>
<<set $_eventTriggered = false>>
<</switch>>
<</if>>
<</nobr>><<nobr>>
<<set _ev = $events.livingroom>>
<<if _ev.delay > 0>>
<<set _ev.delay-->>
<<set $_eventTriggered = false>>
<<else>>
<<switch _ev.stage>>
<<case 0>>
<<run setup.triggerEvent("livingroom", 1, 2, "event_livingroom_girls1_start")>>
<<set $_eventTriggered = true>>
<<default>>
<<set $_eventTriggered = false>>
<</switch>>
<</if>>
<</nobr>><<nobr>>
<<set _ev = $events.mall_clothes>>
<<if _ev.delay > 0>>
<<set _ev.delay-->>
<<set $_eventTriggered = false>>
<<else>>
<<switch _ev.stage>>
<<case 0>>
<<run setup.triggerEvent("mall_clothes", 1, 3, "event_mall_clothes1_start")>>
<<set $_eventTriggered = true>>
<<default>>
<<set $_eventTriggered = false>>
<</switch>>
<</if>>
<</nobr>><<nobr>>
<div class="msg-box-autor">
<<ru>>Ты берешь ручку и быстро подписываешь приказ об увольнении. Стив официально больше не работает здесь.<</ru>>
<<en>>You take the pen and quickly sign the termination order. Steve is officially no longer working here.<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Готово. Надеюсь, ты знала, что делала, Хлоя." : "Done. I hope you knew what you were doing, Chloe.")`>>
<div class="msg-box-autor">
<<ru>>Хлоя забирает лист бумаги почти мгновенно, как будто только этого и ждала. На её губах появляется едва заметная, торжествующая улыбка.<</ru>>
<<en>>Chloe takes the paper almost instantly, as if she was just waiting for this. A faint, triumphant smile appears on her lips.<</en>>
</div>
<img src="data/images/act1/chloewin.webp" class="scene-img" width="500">
<<say "sec" `($lang == "ru" ? "Конечно. Стив был слишком... мягким. Он бы только мешал... процессам." : "Of course. Steve was too... soft. He would only get in the way of... the processes.")`>>
<<say "hero" `($lang == "ru" ? "Процессам? О чем ты?" : "Processes? What are you talking about?")`>>
<div class="msg-box-autor">
<<ru>>Она делает шаг ближе, нарушая твое личное пространство. От неё пахнет дорогим парфюмом и холодной уверенностью.<</ru>>
<<en>>She takes a step closer, invading your personal space. She smells of expensive perfume and cold confidence.<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Рабочим процессам, сэр. Теперь, когда его нет, нам будет гораздо проще работать... вдвоем." : "To the work processes, sir. Now that he's gone, it will be much easier for us to work... together.")`>>
<div class="msg-box-autor">
<<ru>>Её взгляд задерживается на тебе чуть дольше, чем того требует этикет.<</ru>>
<<en>>Her gaze lingers on you a little longer than etiquette requires.<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Я сама во всем разберусь. Просто доверьтесь мне." : "I'll handle everything myself. Just trust me.")`>>
<div class="msg-box-autor">
<<ru>>С этими словами и улыбкой на лице Хлоя покидает офис. Тишина. Время будто замедлилось. Ты слышишь тарабанищий звук своего пульса. Прохладный пот выступил на лбу.
<br>Сейчас.
<br>Только сейчас ты осознал, где поставил свою подпись.<</ru>>
<<en>>With these words and a smile on her face, Chloe leaves the office. Silence. Time seems to have slowed down. You can hear the drumming thud of your pulse. A cool sweat breaks out on your forehead.
<br>Now.
<br>Only now did you realize where you put your signature.<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Почему этих чувст не было, когда <b>она</b> стояла рядом и ждала моего решения? Я был спокоен, словно находился под крылом человека, который в любой момент защитит меня и решит любой вопрос." : "Why were these feelings absent while <b>she</b> stood nearby, waiting for my decision? I was calm, as if I were under the wing of someone who would protect me at any moment and solve any problem.")` "thought">>
<<say "hero" `($lang == "ru" ? "Дико странное ощущение..." : "A freaking weird feeling...")`>>
<div id="choice-area">
<<link `($lang == "ru" ? "Сделать перерыв" : "Take a break")` "office_my_room">><</link>>
</div>
<</nobr>><<nobr>>
<div class="msg-box-autor">
<<ru>>Ты отодвигаешь приказ в сторону и жестом просишь Хлою передать тебе папку с отчетами. Её бровь едва заметно взлетает вверх — она явно не ожидала этого.<</ru>>
<<en>>You push the order aside and motion for Chloe to hand you the folder with the reports. Her eyebrow twitches almost imperceptibly — she didn't expect resistance.<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Я не буду подписывать это сейчас. Мне нужно самому проверить цифры, о которых ты говорила." : "I'm not signing this now. I need to verify the numbers you mentioned myself.")`>>
<div class="msg-box-autor">
<<ru>>Хлоя медленно передает тебе документы. Она не уходит, а остается стоять рядом, почти касаясь твоего плеча, словно пытаясь отвлечь тебя своим присутствием.<</ru>>
<<en>>Chloe slowly hands you the documents. She doesn't leave; instead, she stands close, almost brushing your shoulder, as if trying to distract you with her presence.<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Конечно, сэр. Но это займет часы... Я могла бы просто пересказать вам суть, чтобы вы не утомляли себя рутиной." : "Of course, sir. But this will take hours... I could just summarize the gist for you, so you don't tire yourself with routine.")`>>
<div class="msg-box-autor">
<<ru>>Ты игнорируешь её предложение и погружаешься в графики. Голова начинает ныть от обилия данных, но через тридцать минут ты находишь то, что искал — переводы с подписью Стива и правда были. Напоследок ты решаешь взглянуть на его рабочий график - во время всех этих странных переводов он находился либо в офисе, либо вообще в другом городе на встрече с клиентами.<</ru>>
<<en>>You ignore her offer and dive into the charts. Your head begins to ache from the data overload, but after thirty minutes, you find what you were looking for — the transfers with Steve's signature did indeed exist. Finally, you decide to check his work schedule: during all these strange transfers, he was either busy in the office or in another city altogether, meeting with clients.<</en>>
</div>
<img src="data/images/act1/mcthink.webp" class="scene-img" width="500">
<<say "hero" `($lang == "ru" ? "Странно... Я пока не могу понять этого, но почему он совершал транзакции, даже когда не находился в городе? Я собираюсь сначала выяснить это перед принятием решения. А пока... Стиву нужно сделать выговор и лишить премии, потому что его подпись в любом случае фигурирует здесь. Подготовь бумаги по дисциплинарному взысканию вместо увольнения." : "Strange... I can't wrap my head around it yet, but why was he making transactions while he wasn't even in town? I'm going to figure this out before making a final decision. For now... Steve needs a reprimand and a loss of bonus, since his signature is on these documents anyway. Prepare disciplinary papers instead of a termination.")`>>
<div class="msg-box-autor">
<<ru>>На секунду в офисе становится очень холодно. Улыбка Хлои исчезает, сменяясь маской вежливого, но ледяного профессионализма.<</ru>>
<<en>>For a second, the office turns very cold. Chloe's smile vanishes, replaced by a mask of polite but icy professionalism. She realized that this time, her manipulation failed.<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Как пожелаете, сэр. Я... немного ошиблась сегодня. Я все исправлю." : "As you wish, sir. I... underestimated your attentiveness today. I will fix everything.")`>>
<div id="choice-area">
<<link `($lang == "ru" ? "Проводить её взглядом и выдохнуть" : "Watch her leave and take a breath")` "office_my_room">><</link>>
</div>
<</nobr>><<nobr>>
<<set _ev = $events.cafe>>
<<if _ev.delay > 0>>
<<set _ev.delay-->>
<<set $_eventTriggered = false>>
<<else>>
<<switch _ev.stage>>
<<case 0>>
<<run setup.triggerEvent("cafe", 1, 3, "event_cafe1")>>
<<set $_eventTriggered = true>>
<<default>>
<<set $_eventTriggered = false>>
<</switch>>
<</if>>
<</nobr>><<nobr>>
<div class="msg-box-autor">
<<ru>>Ты замечаешь их сразу — $wifeName и Джесс сидят у окна, перед ними кофе, разговор явно в разгаре. Джесс первой поднимает взгляд и замечает тебя, а по её улыбке сложно понять — рада она или просто ждала момента. Ты подходишь ближе и садишься. Пространства за столом оказывается чуть меньше, чем хотелось бы — Джесс даже не пытается подвинуться.<</ru>>
<<en>>You notice them right away — $wifeName and Jess are seated by the window, coffee in front of them, clearly mid-conversation. Jess is the first to look up, and from her smile, it’s hard to tell whether she’s pleased to see you or just waiting for this moment. You walk over and take a seat. There’s a bit less space than you’d like — Jess doesn’t even make an effort to make room.<</en>>
</div>
<img src="data/images/act1/wfriendcafe.webp" class="scene-img" width="500">
<<if $wfriendAudacity >= 10>>
<<say "wfriend" `($lang == "ru" ? "О, наш дорогой мальчик решил присоединиться к женскому веселью… не переживай, самое интересное ты ещё не пропустил." : "Oh, our dear boy has decided to join the ladies' fun... don't worry, you haven't missed the best part yet.")`>>
<<if $wifeSuggestibility >= 7>>
<div class="msg-box-autor">
<<ru>>$wifeName тихо смеётся, явно подхватывая тон Джесс. Но, поймав твой взгляд, быстро сдерживается и делает вид, что занята чашкой.<</ru>>
<<en>>$wifeName lets out a soft laugh, clearly picking up on Jess’s tone. But when she catches your eye, she quickly pulls herself together and pretends to be busy with her cup.<</en>>
</div>
<<else>>
<div class="msg-box-autor">
<<ru>>$wifeName слегка толкает Джесс локтем, бросая на неё укоризненный взгляд.<</ru>>
<<en>>$wifeName nudges Jess lightly with her elbow, giving her a reproachful look.<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Джесс…" : "Jess…")`>>
<</if>>
<<if $mcSC >= 80>>
<<say "hero" `($lang == "ru" ? "Скорее решил посмотреть, не слишком ли ты тут расслабилась без меня." : "More like checking if you’re getting a little too comfortable here without me.")`>>
<<else>>
<<say "hero" `($lang == "ru" ? "Да просто проходил мимо. Решил составить вам компанию." : "I was just passing by. Thought I’d join you for a bit.")`>>
<</if>>
<<else>>
<<say "wfriend" `($lang == "ru" ? "О, привет. Мы как раз тебя ждали." : "Oh, hey. We were just waiting for you.")`>>
<</if>>
<<say "wife" `($lang == "ru" ? "Ты как раз вовремя. Мы тут… разговаривали о..." : "You’re just in time. We were just… talking about...")`>>
<div class="msg-box-autor">
<<ru>>Она на секунду запинается, бросая короткий взгляд на Джесс, будто проверяя, можно ли продолжать. Джесс лишь слегка улыбается и берет разговор на себя.<</ru>>
<<en>>She hesitates for a moment, glancing at Jess as if checking whether she should continue. Jess just smiles faintly and takes over the conversation.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "О том что настоящая сила мужчины не в том, сколько он зарабатывает, а в том, насколько комфортно рядом с ним женщине." : "The real strength of a man is not in how much he earns, but in how comfortable a woman feels around him.")`>>
<<say "wfriend" `($lang == "ru" ? "А комфорт — это когда женщина может расслабиться и не думать о быте. Когда есть кто-то, кто готов взять на себя мелкие заботы, чтобы она могла просто… быть." : "And comfort is when a woman can relax and not think about chores. When there’s someone who’s willing to take care of the little things so she can just… be.")`>>
<div class="msg-box-autor">
<<ru>>$wifeName слегка краснеет и опускает взгляд в свой кофе, но молчит. Пальцы её нервно крутят ложечку.<</ru>>
<<en>>$wifeName flushes slightly and lowers her gaze to her coffee, remaining silent. Her fingers nervously spin the small spoon.<</en>>
</div>
<<say "wife" `($lang == "ru" ? "Джесс, ты опять начинаешь..." : "Jess, you’re starting again...")`>>
<<say "wfriend" `($lang == "ru" ? "Я просто говорю вслух то, о чём многие думают." : "I’m just saying out loud what a lot of people think.")`>>
<div class="msg-box-autor">
<<ru>>В этот момент ложечка $wifeName с тихим звоном падает на пол под стол. Ты почти автоматически наклоняешься, чтобы её поднять.
<img src="data/images/act1/legscafe.webp" class="scene-img" width="700">
Когда ты выпрямляешься и кладешь ложечку обратно на стол, Джессика смотрит на тебя с довольной, чуть слишком широкой улыбкой.<</ru>>
<<en>>At that moment, $wifeName's spoon falls to the floor under the table with a soft clink. You almost instinctively lean down to pick it up.
<img src="data/images/act1/legscafe.webp" class="scene-img" width="700">
When you straighten up and place the spoon back on the table, Jessica is looking at you with a satisfied, slightly too wide smile.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Ухх… Это напомнило мне кое о чем." : "Mm… that reminds me of something.")`>>
<<say "wife" `($lang == "ru" ? "О чём?" : "Like what?")`>>
<<say "wfriend" `($lang == "ru" ? "Да так… не лучшая история для этого места." : "Oh, nothing… probably not the best story for this place.")`>>
<<say "wife" `($lang == "ru" ? "Да брось, расскажи." : "Oh come on, tell us.")`>>
<<say "wfriend" `($lang == "ru" ? "Ну смотри… потом не говори, что я опять тебя развращаю." : "Alright… but don’t blame me later for corrupting you again.")`>>
<div class="msg-box-autor">
<<ru>>Она улыбается и бросает короткий взгляд на тебя. Слишком осознанный и провоцирующий.<</ru>>
<<en>>She smiles and flashes a quick look at you. Far too deliberate and provocative.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Мы как-то сидели с Мартином в одном довольно дорогом ресторане. Было скучновато… и я решила немного развлечься." : "Martin and I were once sitting in a rather expensive restaurant. It was getting a bit boring… so I decided to have some fun.")`>>
<<say "wfriend" `($lang == "ru" ? "Я просто посмотрела на него и тихо сказала: «Под стол». Без объяснений. Без «пожалуйста»." : "I just looked at him and quietly said: «Under the table». No explanations. No «please».")`>>
<div class="msg-box-autor">
<<ru>>$wifeName резко поднимает брови, её щёки мгновенно заливает румянец. Она открывает рот, но ничего не говорит — только смотрит на Джесс широко раскрытыми глазами.<</ru>>
<<en>>$wifeName's eyebrows shoot up, her cheeks instantly flooding with a deep blush. She opens her mouth but says nothing — she just stares at Jess with wide eyes.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "И знаешь что самое интересное? Он даже не спросил «зачем». Просто улыбнулся этой своей виноватой улыбкой… и полез под стол." : "And you know what’s the most interesting part? He didn’t even ask «why». He just gave that guilty little smile of his… and went under the table.")`>>
<<say "wfriend" `($lang == "ru" ? "А я сидела, пила вино и делала вид, что внимательно слушаю официанта, который рассказывал про фирменное блюдо." : "And I just sat there, sipping my wine, pretending to listen carefully to the waiter who was describing the signature dish.")`>>
<div class="msg-box-autor">
<<ru>>Джессика делает паузу, наслаждаясь реакцией. Её глаза блестят. <br><br> Она наклоняется чуть ближе к столу и продолжает почти шёпотом, но достаточно громко, чтобы слышали вы оба:<</ru>>
<<en>>Jessica pauses, savoring the reaction. Her eyes glint. <br><br> She leans a bit closer to the table and continues almost in a whisper, yet loud enough for both of you to hear:<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Под столом он был очень старательным. Я даже пару раз чуть не застонала в голос. Пришлось прикусить губу." : "Under the table he was very… diligent. I almost moaned out loud a couple of times. Had to bite my lip.")`>>
<img src="data/images/act1/wfriendcuni.gif" class="scene-img" width="400">
<<say "wfriend" `($lang == "ru" ? "А когда он закончил, я просто погладила его по голове и сказала: «Хороший мальчик». Он вылез красный, счастливый и с мокрым подбородком." : "And when he finished, I just stroked his head and said: «Good boy». He came out all red, happy, and with a wet chin.")`>>
<div class="msg-box-autor">
<<ru>>$wifeName сидит совершенно неподвижно. Её лицо пылает. Она пытается сделать глоток кофе, но рука слегка дрожит. Она явно хочет что-то сказать, но не может подобрать слова. <br><br> Джессика же смотрит прямо на тебя, не мигая.<</ru>>
<<en>>$wifeName sits perfectly still. Her face is burning. She tries to take a sip of her coffee, but her hand trembles slightly. She clearly wants to say something, but can't find the words. <br><br> Jessica, however, stares directly at you, unblinking.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Скажи, $playerName… ты бы смог так же? Просто по ее команде… под стол?" : "Tell me, $playerName… could you do the same? Just because she said so… under the table?")`>>
<<say "hero" `($lang == "ru" ? "Звучит… экстремально." : "Sounds… extreme.")`>>
<<say "wfriend" `($lang == "ru" ? "Экстремально? Нет, милый. Это просто вопрос иерархии в паре." : "Extreme? No, darling. It’s just a question of hierarchy in a couple.")`>>
<<say "wife" `($lang == "ru" ? "Да ладно тебе, Джесс. Мы не такие как вы с Мартином. Признаться честно я никогда и не думала о том, чтобы мой муж поедал меня там... внизу." : "Oh, come on, Jess. We're not like you and Martin. To be honest, I've never even thought about my husband eating me out there... Down there.")`>>
<<say "wfriend" `($lang == "ru" ? "Моя дорогая девочка... Ты очень много теряешь. Советую тебе срочно попробовать." : "My dear girl... You're missing out on a lot. I strongly recommend that you give it a try.")`>>
<div class="msg-box-autor">
<<ru>>$wifeName сначала хотела что-то сказать, но оборвалась на полуслове. Было видно, что она глубоко задумалась. Она мельком посмотрела в твои глаза, не так как раньше... Будто оценивала возможные будущие события с твоим участием.<</ru>>
<<en>>$wifeName wanted to say something at first, but she stopped in mid-sentence. It was clear that she was deep in thought. She glanced into your eyes, not in the same way as before... It was as if she was evaluating possible future events involving you.<</en>>
</div>
<div class="msg-box-autor">
<<ru>>Джессика делает паузу, наслаждаясь неловкой тишиной, потом вдруг легко хлопает в ладоши и улыбается, будто только что вспомнила что-то приятное.<</ru>>
<<en>>Jessica pauses, enjoying the awkward silence, then suddenly claps her hands lightly and smiles, as if she just remembered something pleasant.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Ладно, девочки и мальчики, пора закругляться. Счёт, пожалуйста!" : "Alright, girls and boys, time to wrap this up. Check, please!")`>>
<div class="msg-box-autor">
<<ru>>Официант приносит счёт и кладёт его на стол между вами троими. Сумма вполне приличная — два латте, десерты и небольшая закуска. <br><br> Джессика даже не смотрит на бумажку. Она просто откидывается на стуле, смотрит прямо на тебя и говорит самым сладким голосом:<</ru>>
<<en>>The waiter brings the check and places it on the table between the three of you. The total is quite decent — two lattes, desserts, and a small snack. <br><br> Jessica doesn't even glance at the paper. She just leans back in her chair, looks straight at you, and says in her sweetest voice:<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "$playerName, будь лапочкой и закрой наш девичник. Ты же у нас главный добытчик в этой компании." : "$playerName, be a sweetheart and take care of our girls’ afternoon. You’re the main breadwinner here, after all.")`>>
<div class="msg-box-autor">
<<ru>>Она говорит это легко, почти шутя, но в глазах — явное испытание. $wifeName бросает на тебя быстрый, немного виноватый взгляд, но ничего не говорит. <br><br> Джессика наклоняется чуть ближе и добавляет тише:<</ru>>
<<en>>She says it lightly, almost jokingly, but there’s a clear challenge in her eyes. $wifeName shoots you a quick, somewhat guilty glance but says nothing. <br><br> Jessica leans a little closer and adds more quietly:<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "В конце концов… после такого интересного разговора ты же не захочешь портить нам настроение, правда?" : "After such an interesting conversation, you wouldn’t want to ruin our mood, right?")`>>
<div id="choice-area">
<hr>
<<link `($lang == "ru" ? "Молча оплатить счёт" : "Silently pay the bill")`>>
<<set $wfriendInfluence += 3>>
<<set $wifeSuggestibility += 3>>
<<set $mcWillpower -= 3>>
<<set $money -= 120>>
<<replace "#choice-area">>
<div class="msg-box-autor">
<<ru>>Ты молча достаёшь карту и оплачиваешь весь счёт. Джессика расплывается в довольной улыбке.<</ru>>
<<en>>You silently pull out your card and pay the entire bill. Jessica breaks into a satisfied smile.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Вот это правильный подход. Спасибо, мальчик." : "That’s the right attitude. Thank you, boy.")`>>
<<link `($lang == "ru" ? "Закончить встречу и уйти" : "End the meeting and leave")` "free_cafe">>
<<set $wifeLick = true>>
<<nextPhase>>
<</link>>
<</replace>>
<</link>>
<<link `($lang == "ru" ? "Предложить разделить счёт" : "Suggest splitting the bill")`>>
<<set $mcSC += 2>>
<<set $mcWillpower += 3>>
<<set $wfriendInfluence -= 3>>
<<set $money -= 80>>
<<replace "#choice-area">>
<div class="msg-box-autor">
<<ru>>Ты спокойно предлагаешь разделить счёт. Улыбка Джессики на секунду становится чуть холоднее.<</ru>>
<<en>>You calmly suggest splitting the bill. Jessica's smile turns a bit colder for a second.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Ой, как скучно… Ладно, в этот раз прощаю." : "Oh, how boring… Fine, I’ll let it slide this time.")`>>
<<link `($lang == "ru" ? "Закончить встречу и уйти" : "End the meeting and leave")` "free_cafe">>
<<set $wifeLick = true>>
<<nextPhase>>
<</link>>
<</replace>>
<</link>>
</div>
<</nobr>><<nobr>>\
<div class="msg-box-autor">
<<ru>>Ты замечаешь их сразу — $wifeName и Джесс уже сидят у окна, перед ними кофе, разговор явно в разгаре. Джесс первой поднимает взгляд и замечает тебя, а по её улыбке сложно понять — рада она или просто ждала момента. Ты подходишь ближе и садишься. Пространства за столом оказывается чуть меньше, чем хотелось бы — Джесс даже не пытается подвинуться. Вы вместе наслаждаетесь превосходной едой и расходитесь.<</ru>>
<<en>>You notice them right away — $wifeName and Jess are already seated by the window, coffee in front of them, clearly mid-conversation. Jess is the first to look up, and from her smile, it’s hard to tell whether she’s pleased to see you or just waiting for this moment. You walk over and take a seat. There’s a bit less space than you’d like — Jess doesn’t even make an effort to make room. You enjoy a delicious meal together and then part ways.<</en>>
</div>
<div id="choice-area">
<<link `($lang == "ru" ? "Продолжить" : "Continue")` "free_cafe">>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<nobr>>
/* ПЕРЕД ВЫХОДОМ НОВОЙ ВЕРСИИ:
ВСТАВИТЬ СТРОКУ НИЖЕ */
/* <<if $ver == "0.1">> <<goto "Passage_Next_Content">> <</if>> */
<div class="version-end-screen">
<div id="game-logo">
<img src="data/ui/title.webp" style="width: 550px; margin-bottom: 10px;">
</div>
<div class="msg-box-autor">
<<ru>>
<h2 class="endv-text">КОНЕЦ ТЕКУЩЕЙ ВЕРСИИ</h2>
<p>Вы достигли финала версии <strong><<print $ver>></strong>.</p>
<p>Спасибо, что играли в «Imperfect Life»!</p>
История героя только начинается. Дальше будет значительно жёстче, глубже и интереснее.
<hr>
<p class="save-instruction"><strong>ПОЖАЛУЙСТА, СОХРАНИТЕСЬ ЗДЕСЬ.</strong></p>
<br>
<p style="font-size: 0.9em; color: #aaa; margin-bottom: 10px;">Стань частью команды <strong>Imperfect Life</strong>. Подписчики напрямую смогут <strong>влиять на развитие сюжета</strong>, участвуя в эксклюзивных голосованиях. Следи за новостями и получай обновления раньше других по ссылкам ниже:</p>
<div class="support-links-row">
<a href="https://www.patreon.com/modexon" target="_blank" class="support-btn patreon" title="Patreon">
<img src="data/ui/patreon.webp" alt="Patreon">
</a>
<a href="https://www.boosty.to/modexon" target="_blank" class="support-btn boosty" title="Boosty">
<img src="data/ui/boosty.webp" alt="Boosty">
</a>
<a href="https://www.subscribestar.com/modexon" target="_blank" class="support-btn ss" title="Subscribe Star">
<img src="data/ui/ss.webp" alt="Subscribe Star">
</a>
</div>
<</ru>>
<<en>>
<h2 class="endv-text">END OF CURRENT VERSION</h2>
<p>You have reached the end of version <strong><<print $ver>></strong>.</p>
<p>Thank you for playing "Imperfect Life"!</p>
Hero's story is only just beginning. It will get much darker, deeper, and more intense.
<hr>
<p class="save-instruction"><strong>PLEASE SAVE YOUR GAME HERE.</strong></p>
<br>
<p style="font-size: 0.9em; color: #aaa; margin-bottom: 10px;">Become a part of the <strong>Imperfect Life</strong> team. Subscribers will be able to directly <strong>influence the development of the plot</strong> by participating in exclusive votes. Stay tuned for updates and receive them before others by following the links below:</p>
<div class="support-links-row">
<a href="https://www.patreon.com/modexon" target="_blank" class="support-btn patreon" title="Patreon">
<img src="data/ui/patreon.webp" alt="Patreon">
</a>
<a href="https://www.boosty.to/modexon" target="_blank" class="support-btn boosty" title="Boosty">
<img src="data/ui/boosty.webp" alt="Boosty">
</a>
<a href="https://www.subscribestar.com/modexon" target="_blank" class="support-btn ss" title="Subscribe Star">
<img src="data/ui/ss.webp" alt="Subscribe Star">
</a>
</div>
<</en>>
</div>
</div>
<</nobr>><<nobr>>
<<set _ev = $events.seccafe>>
<<if _ev.delay > 0>>
<<set _ev.delay-->>
<<set $_eventTriggered = false>>
<<else>>
<<switch _ev.stage>>
<<case 0>>
<<run setup.triggerEvent("seccafe", 1, 3, "event_seccafe_1")>>
<<set $_eventTriggered = true>>
<<default>>
<<set $_eventTriggered = false>>
<</switch>>
<</if>>
<</nobr>><<nobr>>\
<div class="msg-box-autor">
<<ru>>Ты подходишь к столику Хлои. Она отрывается от своего гаджета и приветливо кивает, жестом предлагая составить ей компанию. Вы проводите вместе около получаса, наслаждаясь ланчем и легкой беседой.<</ru>>
<<en>>You approach Chloe's table. She looks up from her device and gives a friendly nod, gesturing for you to join her. You spend about half an hour together, enjoying lunch and a light conversation.<</en>>
</div>
<img src="data/images/act1/lunchcafe.webp" class="scene-img" width="600">
<div class="msg-box-autor">
<<ru>>Обсуждение не касается серьезных рабочих вопросов — скорее, вы обмениваетесь мнениями о местной кухне, погоде и последних новостях офиса. Хлоя держится уверенно и расслабленно, изредка позволяя себе тонкие ироничные замечания.<</ru>>
<<en>>The discussion doesn't touch on serious work issues — instead, you exchange opinions on the local cuisine, the weather, and the latest office gossip. Chloe remains confident and relaxed, occasionally allowing herself subtle, ironic remarks.<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Приятно иногда сменить обстановку, не так ли, $playerName? В офисе стены слишком... прозрачные. Спасибо за компанию." : "It's nice to change the scenery sometimes, isn't it, $playerName? The walls in the office are too... transparent. Thanks for the company.")`>>
<div class="msg-box-autor">
<<ru>>Когда время перерыва подходит к концу, Хлоя аккуратно собирает свои вещи. Короткая улыбка на прощание — и она направляется к выходу, оставляя тебя допивать свой кофе.<</ru>>
<<en>>As the break comes to an end, Chloe neatly gathers her things. A quick smile for goodbye — and she heads toward the exit, leaving you to finish your coffee.<</en>>
</div>
<div id="choice-area">
<hr>
<<link `($lang == "ru" ? "Закончить ланч" : "Finish lunch")` "free_cafe">>
<<set $money -= 5>>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<nobr>>
<div class="msg-box-autor">
<<ru>>Подходя к её столику, ты замечаешь, что Хлоя увлечена разговором по видеосвязи.
На экране планшета мелькает фигура в строгом пиджаке — знакомый силуэт.
Слишком знакомый... но ты не успеваешь уловить, кто это именно.
<br>Заметив твое приближение, Хлоя мгновенно блокирует экран, словно ничего и не было, и расплывается в мягкой улыбке.<</ru>>
<<en>>As you approach her table, you notice Chloe is busy with a video call.
A figure in a sharp suit flashes on the tablet screen — a familiar silhouette.
Too familiar… but you don’t quite catch who it is.
<br>Noticing you, Chloe instantly locks the screen as if nothing happened and breaks into a soft smile.<</en>>
</div>
<img src="data/images/act1/chloecafe.webp" class="scene-img" width="600">
<<say "sec" `($lang == "ru" ? "$playerName, рада вас видеть!" : "$playerName, good to see you!")`>>
<div class="msg-box-autor">
<<ru>><i>«Просто $playerName?»</i> — проносится у тебя в голове. Ты уже привык к её официальному «Мистер», но, с другой стороны, сейчас вы не в офисе, так что такая неформальность кажется вполне уместной. <br><br> Ты присаживаешься напротив.<</ru>>
<<en>><i>"Just $playerName?"</i> — flashes through your mind. You've grown used to her formal "Mr.", but then again, you're not in the office, so this informality feels appropriate enough. <br><br> You take a seat opposite her.<</en>>
</div>
<<say "hero" `($lang == "ru" ? "И тебе привет, Хлоя. Не думал, что ты посещаешь такие заведения." : "Hey to you too, Chloe. Didn't think you frequented places like this.")`>>
<<say "sec" `($lang == "ru" ? "Вы правы, я предпочитаю дорогую и вкусную еду, но, честно говоря, здесь кормят не так уж плохо. Что касается выбора места... раньше, когда у меня была машина, я могла позволить себе съездить в ресторан. Но сейчас я без колес, а это кафе в двух шагах от офиса." : "You're right, I prefer expensive and gourmet food, but honestly, the food here isn't that bad. As for the location... back when I had a car, I could afford to drive to a restaurant. But now I'm without wheels, and this place is just a stone's throw from the office.")`>>
<div class="msg-box-autor">
<<ru>>Она улыбается, когда ты заказываешь себе ланч, решив составить ей компанию.<</ru>>
<<en>>She smiles as you order lunch, deciding to keep her company.<</en>>
</div>
<<if $firedSteve == true>>
<<say "sec" `($lang == "ru" ? "Знаете, насчет той ситуации со Стивом... можете не волноваться, вы сделали абсолютно правильный выбор. Когда он узнал об увольнении, он не был в ярости. Ушел спокойно. Я думаю, он признал... свою вину." : "You know, about that situation with Steve... you don't have to worry, you made the absolutely right choice. When he found out about the dismissal, he wasn't in a rage. He left quietly. I think he admitted... his guilt.")`>>
<<say "hero" `($lang == "ru" ? "Как скажешь, Хлоя. Спасибо, что открыла мне глаза на эту ситуацию." : "If you say so, Chloe. Thanks for opening my eyes to that situation.")`>>
<</if>>
<div class="msg-box-autor">
<<ru>>Далее обед проходит тихо и приятно. Вы стараетесь не касаться рабочих вопросов, обсуждая повседневные мелочи. Хлоя умеет поддерживать беседу, оставаясь при этом загадочной. В какой-то момент она ставит локти на стол и чуть наклоняется к тебе.<</ru>>
<<en>>The rest of lunch passes quietly and pleasantly. You try not to touch on work matters, discussing everyday trifles instead. Chloe knows how to maintain a conversation while remaining mysterious. At some point, she rests her elbows on the table and leans slightly toward you.<</en>>
</div>
<<say "sec" `($lang == "ru" ? "$playerName, кстати... как поживает ваша жена? Знаете, мне даже немного обидно. Мы столько времени работаем вместе, а я до сих пор с ней не знакома. Мне бы хотелось это исправить... и узнать её получше." : "$playerName, by the way... how is your wife? You know, it actually bothers me a little. We've been working together for quite some time, and I still haven't met her. I'd like to fix that... and get to know her better.")`>>
<div class="msg-box-autor">
<<ru>>Она улыбается и подносит кружку кофе ко рту, не отрывая от тебя пристального, изучающего взгляда.<</ru>>
<<en>>She smiles and brings her coffee mug to her lips, never taking her intense, searching gaze off you.<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Да, я не думаю, что это будет большой проблемой. Уверен, вы еще увидитесь." : "Yeah, I don't think that'll be a big problem. I'm sure you'll see each other eventually.")`>>
<div class="msg-box-autor">
<<ru>>Время обеда неспешно подходит к концу. Вы с Хлоей заканчиваете свой ланч, и атмосфера кажется почти дружеской, пока она не меняет тему разговора.<</ru>>
<<en>>Lunchtime is slowly drawing to a close. You and Chloe are finishing your meal, and the atmosphere feels almost friendly until she changes the subject.<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Кстати, $playerName, сегодня утром на мою почту пришло письмо от представителя нашего самого крупного колледжа в городе. Я думаю, он просто ошибся адресом и вместо вас написал мне." : "By the way, $playerName, I received an email this morning from a representative of the city's largest college. I think he just got the address wrong and wrote to me instead of you.")`>>
<<say "sec" `($lang == "ru" ? "Он хотел опробовать одну из наших программ по учету финансов у себя в работе. Я хотела сказать вам об этом в офисе, но не застала в кабинете. Поэтому я сама ответила ему с личной почты, что мы не против и нужно обсудить сумму и детали договора. Это я так... просто чтобы вы были в курсе." : "He wanted to test one of our financial accounting programs in their workflow. I wanted to tell you about it at the office, but I couldn't find you in your room. So I replied from my personal mail myself, saying we don't mind and need to discuss the price and contract details. I'm just... letting you know.")`>>
<div class="msg-box-autor">
<<ru>>Хлоя изящно берет свою сумочку и поднимается, собираясь прощаться. <</ru>>
<<en>>Chloe gracefully picks up her handbag and stands up, preparing to say goodbye.<</en>>
</div>
<<say "hero" `($lang == "ru" ? "Странно... Как клиент мог ошибиться почтой? Мои данные отображены на всех сайтах для сотрудничества, а почта Хлои — только для мелких вопросов. Да и она сама решила ответить, не дожидаясь меня. Я понимаю, что она давно в компании и хорошо разбирается в делах, но это довольно странно и рискованно..." : "Strange... How could a client get the email wrong? My info is displayed on all cooperation sites, while Chloe's email is only for minor matters. And she decided to reply herself without waiting for me. I know she's been with the company a long time and knows the business well, but this is quite strange and risky...")` "thought">>
<<say "hero" `($lang == "ru" ? "Хлоя, я очень рад, что ты разгружаешь меня от дополнительных дел..." : "Chloe, I'm really glad you're taking some of these extra tasks off my shoulders...")`>>
<div id="choice-area">
<<link `($lang == "ru" ? "...но важные задачи оставь для меня" : "...but leave the important tasks to me")`>>
<<set $secInfluence -= 3>>
<<replace "#choice-area">>
<<say "hero" `($lang == "ru" ? "...но давай подобные важные задачи буду решать именно я, для исключения возможных проблем и недопонимания между нами и клиентами." : "...but let me handle such important tasks myself, to avoid any potential problems or misunderstandings between us and the clients.")`>>
<div class="msg-box-autor">
<<ru>>Ты произносишь это твердо, давая понять, что граница между секретарем и руководителем всё еще существует. Улыбка Хлои на мгновение гаснет, сменяясь профессиональной маской.<</ru>>
<<en>>You speak firmly, making it clear that the boundary between secretary and manager still exists. Chloe's smile fades for a moment, replaced by a professional mask.<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Конечно, мистер $playerName. Я просто не хотела терять время. Впредь буду пересылать такие запросы вам немедленно." : "Of course, Mr. $playerName. I just didn't want to waste time. From now on, I'll forward such requests to you immediately.")`>>
<<link `($lang == "ru" ? "Попрощаться и уйти" : "Say goodbye and leave")` "free_cafe">><<nextPhase>><</link>>
<</replace>>
<</link>>
<<link `($lang == "ru" ? "...думаю, ты правильно решила согласиться" : "...I think you made the right call by agreeing")`>>
<<set $secInfluence += 3>>
<<replace "#choice-area">>
<<say "hero" `($lang == "ru" ? "...это действительно сэкономит время. На моей почте такой завал. Да и с этим колледжем мы давно на связи, было понятно, что мы придем к соглашению." : "...it really will save some time. My inbox is such a mess. Besides, we’ve been in touch with this college for a long time; it was obvious we’d reach an agreement.")`>>
<div class="msg-box-autor">
<<ru>>Ты решаешь поддержать её инициативу. В конце концов, колледж — выгодный клиент, а Хлоя действительно сэкономила тебе время. Она довольно кивает, явно довольная твоим доверием.<</ru>>
<<en>>You decide to support her initiative. After all, the college is a lucrative client, and Chloe really did save you some time. She nods approvingly, clearly pleased by your trust.<</en>>
</div>
<<say "sec" `($lang == "ru" ? "Рада, что мы на одной волне. Я пришлю вам копию переписки, как только буду за компьютером. Хорошего дня!" : "Glad we're on the same page. I'll send you a copy of the correspondence as soon as I'm at my computer. Have a good day!")`>>
<<link `($lang == "ru" ? "Попрощаться и уйти" : "Say goodbye and leave")` "free_cafe">><<nextPhase>><</link>>
<</replace>>
<</link>>
</div>
<</nobr>><<nobr>>\
<div class="msg-box-autor">
<<ru>>Ты замечаешь Джессику сразу — она сидит вполоборота к залу, закинув ногу на ногу и лениво просматривая что-то в телефоне. Перед ней стоит высокий бокал с холодным напитком. Заметив твой взгляд, она не машет рукой, а лишь медленно улыбается. Ты подходишь ближе и садишься напротив. Пространства за маленьким столиком оказывается меньше, чем хотелось бы, и Джесс, кажется, это только забавляет.<</ru>>
<<en>>You notice Jessica right away — she’s sitting half-turned to the room, legs crossed, lazily scrolling through something on her phone. A tall glass of a cold drink stands before her. Noticing your gaze, she doesn't wave; she just slowly smiles. You walk over and take a seat opposite her. There’s less space at the small table than you’d like, and Jess seems only amused by it.<</en>>
</div>
<img src="data/images/act1/lunchcafe.webp" class="scene-img" width="600">
<div class="msg-box-autor">
<<ru>>Вы проводите вместе около получаса. Джессика почти не говорит о бытовых вещах; её больше интересуют твои успехи и то, как ты справляешься с новой ролью «большого босса». Она подпирает подбородок ладонью и внимательно слушает, время от времени вставляя двусмысленные комментарии, которые заставляют тебя чувствовать себя не в своей тарелке.<</ru>>
<<en>>You spend about half an hour together. Jessica hardly talks about mundane things; she’s more interested in your success and how you're handling your new role as the "big boss." She rests her chin on her hand and listens intently, occasionally dropping ambiguous comments that make you feel slightly out of place.<</en>>
</div>
<<say "wfriend" `($lang == "ru" ? "Слушай, $playerName, ты выглядишь немного замученным. Тебе реально нужно почаще вот так выбираться из своего кабинета, а то совсем в монитор врастешь. Рада была поболтать!" : "Listen, $playerName, you look a bit worn out. You really need to get out of your office like this more often, or you'll grow into your monitor. It was good chatting!")`>>
<div class="msg-box-autor">
<<ru>>Когда ланч подходит к концу, Джессика неспешно собирается. Она бросает на тебя последний, чуть слишком долгий взгляд, поправляет волосы и уходит, оставляя после себя аромат дорогих духов.<</ru>>
<<en>>As lunch comes to an end, Jessica takes her time gathering her things. She gives you one last, slightly too long look, adjusts her hair, and leaves, leaving behind the scent of expensive perfume.<</en>>
</div>
<div id="choice-area">
<<link `($lang == "ru" ? "Проводить её взглядом и закончить перерыв" : "Watch her leave and finish your break")` "free_cafe">>
<<set $money -= 5>>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\<<nobr>>\
<div class="msg-box-autor">
<<ru>>Заметив тебя, $wifeName моментально преображается, и на её лице расцветает теплая, искренняя улыбка. Ты подходишь и садишься напротив, чувствуя, как привычный уют домашней атмосферы переносится сюда, в это шумное кафе.<</ru>>
<<en>>Noticing you, $wifeName brightens up instantly, a warm, sincere smile spreading across her face. You walk over and take a seat opposite her, feeling the familiar comfort of home follow you into this bustling cafe.<</en>>
</div>
<div class="msg-box-autor">
<<ru>>Вы проводите вместе около получаса, наслаждаясь превосходной едой и обсуждая всякие мелочи. $wifeName с увлечением рассказывает о своем дне, периодически касаясь твоей руки через стол. В эти моменты кажется, что все рабочие проблемы и интриги остаются где-то очень далеко.<</ru>>
<<en>>You spend about half an hour together, enjoying excellent food and discussing various trifles. $wifeName talks enthusiastically about her day, occasionally touching your hand across the table. In these moments, it feels as though all work problems and intrigues are somewhere very far away.<</en>>
</div>
<img src="data/images/act1/lunchcafe.webp" class="scene-img" width="600">
<<say "wife" `($lang == "ru" ? "Я так рада, что мы пересеклись здесь, дорогой. Это именно то, что мне было нужно — небольшая пауза в компании любимого человека." : "I'm so glad we bumped into each other here, honey. This is exactly what I needed — a little break in the company of the person I love.")`>>
<div class="msg-box-autor">
<<ru>>Когда ланч подходит к концу, вы вместе выходите из заведения. $wifeName нежно целует тебя в щеку на прощание, прежде чем отправиться по своим делам, оставляя тебя в прекрасном расположении духа.<</ru>>
<<en>>As lunch comes to an end, you leave the establishment together. $wifeName gives you a gentle kiss on the cheek goodbye before heading off to her business, leaving you in a wonderful mood.<</en>>
</div>
<div id="choice-area">
<<link `($lang == "ru" ? "Попрощаться и продолжить день" : "Say goodbye and continue your day")` "free_cafe">>
<<set $wifeLove += 1>>
<<set $money -= 10>>
<<nextPhase>>
<</link>>
</div>
<</nobr>>\